apxtrib/nationchains/www/nginx_adminapx.conf

68 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-01-22 09:53:09 +00:00
server {
2023-04-29 06:32:56 +00:00
server_name wallants.ndda.fr ;
access_log /home/phil/workspace/apxtrib/nationchains/logs/nginx/adminapx.town.access.log main;
2023-04-27 04:17:20 +00:00
location ~* /nationchains/(schema|blocks|pagans|towns|nations)/ {
# Warning: never add tribes for keeping it private
2023-04-29 06:32:56 +00:00
root /home/phil/workspace/apxtrib/;
2023-04-27 04:17:20 +00:00
}
2023-01-22 09:53:09 +00:00
# /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";
2023-04-29 06:32:56 +00:00
root /home/phil/workspace/apxtrib/nationchains//plugins/;
if (-f /home/phil/workspace/apxtrib/nationchains//plugins/$arg_plugin/keys/$arg_pluginkey) {
2023-01-22 09:53:09 +00:00
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;
2023-04-29 06:32:56 +00:00
root /home/phil/workspace/apxtrib/nationchains/www/cdn/;
2023-01-22 09:53:09 +00:00
}
location /spacedev/ {
rewrite /spacedev/(.*$) /$1 break;
2023-04-29 06:32:56 +00:00
root /home/phil/workspace/apxtrib/nationchains/spacedev/adminapx/dist/;
2023-01-22 09:53:09 +00:00
}
2023-04-27 04:17:20 +00:00
location /api/ {
rewrite /api/(.*$) /$1 break;
proxy_pass http://localhost:3020;
2023-01-22 09:53:09 +00:00
proxy_redirect off;
2023-04-27 04:17:20 +00:00
include proxy_params;
2023-01-22 09:53:09 +00:00
}
2023-04-27 04:17:20 +00:00
2023-01-22 09:53:09 +00:00
location / {
2023-04-29 06:32:56 +00:00
root /home/phil/workspace/apxtrib/nationchains/www/adminapx;
2023-04-27 04:17:20 +00:00
index index.html index_en.html;
2023-01-22 09:53:09 +00:00
}
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;
}
2023-04-29 06:32:56 +00:00
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/wallants.ndda.fr/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/wallants.ndda.fr/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
2023-01-22 09:53:09 +00:00
}
2023-04-29 06:32:56 +00:00
server {
if ($host = wallants.ndda.fr) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name wallants.ndda.fr ;
listen 80;
return 404; # managed by Certbot
}