hacktoberfestsonarrradarrplexorganizrnginxthemedark-themeskinsombilidarrdocker-modsdark-themesdark-modecustom-csscssthemes-customthemes-csssubfilterguacamole
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
781 B
30 lines
781 B
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name themepark.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
index index.html index.htm index.php;
|
|
|
|
location / {
|
|
alias /config/www/themepark/;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
location /themepark {return 302 $scheme://$http_host/themepark/;}
|
|
location /themepark/ {
|
|
alias /config/www/themepark/;
|
|
sub_filter_types *;
|
|
sub_filter 'url("/css/' 'url("/themepark/css/';
|
|
sub_filter_once off;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Don't cache
|
|
add_header Last-Modified $date_gmt;
|
|
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
|
if_modified_since off;
|
|
expires -1;
|
|
etag off;
|
|
}
|
|
|