docs/nginx.conf
Andros Fenollosa 7575fa66f0
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run
Update nginx.conf
2024-06-24 17:35:28 +02:00

21 lines
374 B
Nginx Configuration File

events {}
http {
server {
listen 80 default_server;
server_name _;
root /var/www/html/;
location / {
try_files $uri $uri/ $uri.html =404;
}
location /img {
include /etc/nginx/mime.types;
alias /var/www/html/img;
}
location = /favicon.ico { access_log off; log_not_found off; }
}
}