2
0

Nginx enhancements - split configuration (nginx_*.inc stubs)

This commit is contained in:
2025-03-06 19:03:08 +01:00
parent eb5ede75f0
commit 0342dfe641
5 changed files with 38 additions and 21 deletions

View File

@ -0,0 +1,10 @@
# Includable nginx configuration.
#
# A simple static service.
location / {
root $PAR_SERVICE/storage/volumes/staticweb/;
allow all;
autoindex off;
index index.html index.htm;
try_files $ri $uri/ =404;
}