mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
23 lines
444 B
Plaintext
23 lines
444 B
Plaintext
|
|
server {
|
|
server_name _;
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
include /etc/nginx/common/protect.conf;
|
|
include /etc/nginx/common/protect_add_header.conf;
|
|
|
|
gzip on;
|
|
|
|
root $NGINX_UPDATE_PAGE_ROOT;
|
|
index updating.html;
|
|
|
|
location / {
|
|
try_files /updating.html =404;
|
|
}
|
|
|
|
access_log $GRADIDO_LOG_PATH/nginx-access.update-page.log gradido_log;
|
|
error_log $GRADIDO_LOG_PATH/nginx-error.update-page.log warn;
|
|
}
|
|
|