docs/nginx.conf
Andros Fenollosa 60b3b5f7f9
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run
Update nginx.conf
2024-06-24 17:42:09 +02:00

21 lines
355 B
Nginx Configuration File

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