2
0
docker-skeleton/.templates/nginx/nginx_static.inc

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;
}