You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
356 B
12 lines
356 B
1 year ago
|
location /%pga_alias% {
|
||
|
alias /usr/share/phppgadmin/;
|
||
|
|
||
|
location ~ ^/%pga_alias%/(.*\.php)$ {
|
||
|
alias /usr/share/phppgadmin/$1;
|
||
|
include /etc/nginx/fastcgi_params;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_param HTTP_EARLY_DATA $rfc_early_data if_not_empty;
|
||
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||
|
fastcgi_pass 127.0.0.1:9000;
|
||
|
}
|
||
|
}
|