docs/nginx.conf
Andros Fenollosa 38181ae4e9
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run
Update nginx.conf
2024-06-24 17:44:46 +02:00

21 lines
371 B
Nginx Configuration File

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