22 lines
439 B
Plaintext
22 lines
439 B
Plaintext
server {
|
|
server_name auth.knravish.me;
|
|
index index.html index.htm;
|
|
|
|
set $upstream http://127.0.0.1:9091;
|
|
|
|
location / {
|
|
include /etc/nginx/snippets/proxy.conf;
|
|
proxy_pass $upstream;
|
|
}
|
|
|
|
location = /api/verify {
|
|
proxy_pass $upstream;
|
|
}
|
|
|
|
location /api/authz/ {
|
|
proxy_pass $upstream;
|
|
}
|
|
|
|
listen 80;
|
|
}
|