11 lines
264 B
PHP
11 lines
264 B
PHP
# 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;
|
|
}
|