certbot/certbot-compatibility-test/nginx/nginx-roundtrip-testdata/pylons/nginx.vhost.conf
2016-07-11 13:58:21 -07:00

11 lines
307 B
Text

server {
server_name domain.tld;
location / {
# host and port to fastcgi server
fastcgi_pass 127.0.0.1:8080;
include fastcgi_params;
fastcgi_pass_header Authorization;
fastcgi_intercept_errors off;
}
}