pomerium/examples/nginx/httpbin.conf
bobby 1a9ac2fef5
dev: add remote container debug configs (#1459)
Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
2020-09-28 09:55:17 -07:00

16 lines
383 B
Text

# Protected application
server {
listen 443 ssl;
listen 80;
server_name httpbin.localhost.pomerium.io;
ssl_certificate /etc/nginx/nginx.pem;
ssl_certificate_key /etc/nginx/nginx-key.pem;
include /etc/nginx/ext_authz.conf;
location / {
proxy_pass http://httpbin;
include /etc/nginx/auth.conf;
include /config/nginx/proxy.conf;
}
}