mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
7 lines
215 B
Nginx Configuration File
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";
|
|
}
|