apxtrib/nationchains/www/nginx_adminapx.conf
2023-04-27 06:17:20 +02:00

49 lines
1.6 KiB
Plaintext

server {
server_name adminapx ;
access_log /media/phil/usbfarm/apxtrib/nationchains/logs/nginx/adminapx.town.access.log main;
location ~* /nationchains/(schema|blocks|pagans|towns|nations)/ {
# Warning: never add tribes for keeping it private
root /media/phil/usbfarm/apxtrib/;
}
# /plugins/pluginame/components/xxx?plugin=pluginname&pluginkey=key
# acess if exist pluginkey
location /plugins/ {
add_header X-debug "plugins local $arg_plugin/keys/$arg_pluginkey sent";
root /media/phil/usbfarm/apxtrib/nationchains//plugins/;
if (-f /media/phil/usbfarm/apxtrib/nationchains//plugins/$arg_plugin/keys/$arg_pluginkey) {
rewrite /plugins/([^/]+)/components/([^\?]+) /$1/components/$2 break;
}
return 403 "No valid token access for plugin:$arg_plugin with token:$arg_pluginkey please ask your admin";
}
location /cdn/ {
rewrite /cdn/(.*$) /$1 break;
root /media/phil/usbfarm/apxtrib/nationchains/www/cdn/;
}
location /spacedev/ {
rewrite /spacedev/(.*$) /$1 break;
root /media/phil/usbfarm/apxtrib/nationchains/spacedev/adminapx/dist/;
}
location /api/ {
rewrite /api/(.*$) /$1 break;
proxy_pass http://localhost:3020;
proxy_redirect off;
include proxy_params;
}
location / {
root /media/phil/usbfarm/apxtrib/nationchains/www/adminapx;
index index.html index_en.html;
}
error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/nginx/html;
}
}