11 lines
265 B
Plaintext
11 lines
265 B
Plaintext
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
|
||
|
include /etc/nginx/conf.d/include/ssl-settings;
|
||
|
include /etc/nginx/conf.d/include/init-optional-variables;
|
||
|
|
||
|
location / {
|
||
|
proxy_redirect http://127.0.0.1/ https://$host/;
|
||
|
proxy_pass http://oathkeeper:4455;
|
||
|
}
|