2021-09-19 12:55:33 +02:00
|
|
|
# SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2021-09-19 12:19:40 +02:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
server_name localhost;
|
|
|
|
|
|
|
|
#access_log /var/log/nginx/host.access.log main;
|
|
|
|
|
2023-11-06 18:35:05 +01:00
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
|
|
|
# routes without dots serve the index.html without caching
|
2021-09-19 12:19:40 +02:00
|
|
|
location / {
|
2023-11-06 18:35:05 +01:00
|
|
|
add_header Cache-Control "no-cache";
|
|
|
|
try_files $uri $uri/index.html /index.html;
|
|
|
|
}
|
|
|
|
|
|
|
|
# static js and css files that get replaced instead of updated
|
|
|
|
location ~ \.(js|css) {
|
|
|
|
add_header Cache-Control "public, max-age=31536000, immutable";
|
|
|
|
try_files $uri =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
# cache other static files for 30 days
|
|
|
|
location ~ \.(?!html) {
|
|
|
|
add_header Cache-Control "public, max-age=2592000";
|
|
|
|
try_files $uri =404;
|
2021-09-19 12:19:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#error_page 404 /404.html;
|
|
|
|
|
|
|
|
# redirect server error pages to the static page /50x.html
|
|
|
|
#
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
}
|
|
|
|
|
|
|
|
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
|
|
|
|
#
|
|
|
|
#location ~ \.php$ {
|
|
|
|
# proxy_pass http://127.0.0.1;
|
|
|
|
#}
|
|
|
|
|
|
|
|
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
|
|
|
|
#
|
|
|
|
#location ~ \.php$ {
|
|
|
|
# root html;
|
|
|
|
# fastcgi_pass 127.0.0.1:9000;
|
|
|
|
# fastcgi_index index.php;
|
|
|
|
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
|
|
|
|
# include fastcgi_params;
|
|
|
|
#}
|
|
|
|
|
|
|
|
# deny access to .htaccess files, if Apache's document root
|
|
|
|
# concurs with nginx's one
|
|
|
|
#
|
|
|
|
#location ~ /\.ht {
|
|
|
|
# deny all;
|
|
|
|
#}
|
|
|
|
}
|