tjo.space/nginx.conf
Tine Jozelj 6199051aef
All checks were successful
ci / docker (push) Successful in 4m32s
feat: more well known and nginx config
2024-01-01 23:53:34 +01:00

22 lines
479 B
Nginx Configuration File

server {
listen 80 default_server;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /.well-known {
root /usr/share/nginx/html/.well-known;
default_type application/json;
add_header Access-Control-Allow-Origin *;
}
# 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;
}
}