-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* hypernext: add in README what the cron is doing add /nginx-status small readme update disable access_log for /php-ping and /php-status add /php-status and /php-ping add a line saying the networks lines are important below the dev stuff add KEEPALIVE_TIMEOUT env for nginx add restart:always to keeex config add command example for keeex passphrase generation add keeex example
- Loading branch information
Showing
8 changed files
with
95 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,14 @@ services: | |
# default value: 256M | ||
#- MAX_PHP_MEMORY=256M | ||
|
||
# optional: set a password to get access to /php-status, which will display various metrics about the php-fpm processes | ||
# also works for /nginx-status, for metrics about nginx process | ||
# if this is not set, a random password will be generated but never displayed, effectively disabling access to this endpoint | ||
# the enpdoint can be accessed with the "elabftw" user, and the password you set below | ||
# example value: my-cool-password | ||
# default value: not set | ||
#- STATUS_PASSWORD= | ||
|
||
######################### | ||
# ELABFTW CONFIGURATION # | ||
######################### | ||
|
@@ -201,6 +209,12 @@ services: | |
# example value: Content-Type, Authorization | ||
#- ALLOW_HEADERS= | ||
|
||
# optional: modify the keepalive_timeout value | ||
# nginx doc: http://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_timeout | ||
# default: 100s | ||
# example value: 120s | ||
#- KEEPALIVE_TIMEOUT=100s | ||
|
||
####################### | ||
# REDIS CONFIGURATION # | ||
####################### | ||
|
@@ -350,8 +364,24 @@ services: | |
# networks: | ||
# - elabftw-net | ||
|
||
# example of a keeex container (experimental!) | ||
#keeex: | ||
# image: repo.keeex.me/fkeeex_daemon:latest | ||
# container_name: keeex | ||
# restart: always | ||
# environment: | ||
# - [email protected] | ||
# - FKEEEX_CONFIG_PASSWORD= | ||
# # Set a random passphrase here. You can generate one with "openssl rand -base64 32". | ||
# - FKEEEX_CONFIG_PASSPHRASE= | ||
# expose: | ||
# - 8080 | ||
# networks: | ||
# - elabftw-net | ||
|
||
############################################################### | ||
# EVERYTHING BELOW THIS LINE IS FOR DEVELOPMENT PURPOSES ONLY # | ||
# Except for the networks lines, so don't delete them! # | ||
############################################################### | ||
|
||
# PHPMYADMIN | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters