* typo in .templates/nginx/nginx_static.inc * better ACL comment in .templates/nginx/nginx_xport.inc * missing dependency and wrong order in storage_gitbackup (MediaWiki, WordPress) * wrong order in tools/build * pointless warnings in tools/backup.d/xport_backup.sh * new info file introduced: services/.ports
11 lines
265 B
PHP
11 lines
265 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 $uri $uri/ =404;
|
|
}
|