tjo.space/nginx.conf
Tine Jozelj 84748c47ca
All checks were successful
ci / docker (push) Successful in 5m51s
fix(nginx): well-known
2024-01-02 00:10:59 +01:00

22 lines
468 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;
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;
}
}