Update nginx.conf
Some checks are pending
Gitea Actions Deploy / deploy (push) Waiting to run

This commit is contained in:
Andros Fenollosa 2024-06-24 17:42:09 +02:00 committed by GitHub
parent 0760fcd36c
commit 60b3b5f7f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,14 +3,15 @@ events {}
http {
server {
listen 80 default_server;
server_name _;
root /var/www/html;
server_name _;
location / {
root /var/www/html;
index index.html;
}
location /img {
include /etc/nginx/mime.types;
include /etc/nginx/mime.types;
alias /var/www/html/img;
}