secure.conf

This commit is contained in:
Karol Wypchlo 2020-12-15 16:04:03 +01:00
parent 0f060272e2
commit f261871731
2 changed files with 17 additions and 8 deletions

View File

@ -347,20 +347,20 @@ server {
proxy_pass http://127.0.0.1/$uri?attachment=true&$args;
}
location /secure {
rewrite /secure/(.*) /$1 break;
proxy_pass http://oathkeeper:4455;
}
# location /secure {
# rewrite /secure/(.*) /$1 break;
# proxy_pass http://oathkeeper:4455;
# }
#location /secure/self-service {
# rewrite /secure/self-service/(.*) /$1 break;
# proxy_pass http://oathkeeper:4455;
#}
location /accounts {
rewrite /accounts/(.*) /$1 break;
proxy_pass http://accounts:3000;
}
# location /accounts {
# rewrite /accounts/(.*) /$1 break;
# proxy_pass http://accounts:3000;
# }
# include custom locations, specific to the server
include /etc/nginx/conf.d/server-override/*;

View File

@ -0,0 +1,9 @@
server {
listen 80;
listen [::]:80;
server_name secure.siasky.xyz;
location / {
proxy_pass http://oathkeeper:4455;
}
}