1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

12 lines
305 B
PHP
Raw Normal View History

2018-05-31 16:01:46 +03:00
location /phppgadmin {
alias /usr/share/phppgadmin;
2018-05-31 16:01:46 +03:00
location ~ ^/phppgadmin/(.*\.php)$ {
alias /usr/share/phppgadmin/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}