Update nginx.conf with new root directory and error page

This commit is contained in:
Max Schmidt 2023-10-24 10:24:59 +02:00
parent 46e53c7623
commit d64bf301dd

View File

@ -1,10 +1,10 @@
worker_processes 1;
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
include mime.types;
default_type application/octet-stream; default_type application/octet-stream;
include mime.types;
gzip on; gzip on;
gzip_vary on; gzip_vary on;
gzip_proxied any; gzip_proxied any;
@ -17,17 +17,21 @@ http {
listen 80; listen 80;
location / { location / {
root html; root /usr/share/nginx/html;
index index.html index.htm; try_files $uri $uri/ =404;
} }
#error_page 404 /404.html; location /error_page.html {
internal;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
} }
location ~* \.(jpg|jpeg|png|gif|ico|css|js|htm|html)$ {
root /usr/share/nginx/html;
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
error_page 404 /error_page.html;
} }
} }