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

View File

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