Revert "secure.conf"

This reverts commit 0fc78481b5d9681f92d4d9028dba8ee5abfeede7.
This commit is contained in:
Karol Wypchlo 2020-12-15 16:29:49 +01:00
parent e2d7397d05
commit 62b9e7dbb4
2 changed files with 8 additions and 17 deletions

View File

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

View File

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