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

7 lines
215 B
Nginx Configuration File

location ~ /thisapp(?<path_info>/.*|$) {
fastcgi_pass unix:/path/to/thisappfcgi.sock;
include /etc/nginx/fastcgi_params;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_NAME "/thisapp";
}