Actualiser postgresql/phppagadmin/install.md

This commit is contained in:
2026-02-04 16:12:54 +00:00
parent c684dcdeef
commit 239b321d56

View File

@@ -3,7 +3,7 @@
First, lets add a symbolic link to the directory where you intend to place all your web files in. First, lets add a symbolic link to the directory where you intend to place all your web files in.
``` ```
sudo ln -s /usr/share/webapps/phppgadmin /path/to/your/www sudo ln -s /usr/share/phppgadmin /var/www
``` ```
Next, lets create a server block for phpPgAdmin. Create a file /etc/nginx/sites-available/phppgadmin with the following contents. Next, lets create a server block for phpPgAdmin. Create a file /etc/nginx/sites-available/phppgadmin with the following contents.
@@ -12,7 +12,7 @@ Next, lets create a server block for phpPgAdmin. Create a file /etc/nginx/sites-
# Server block for phppgadmin service # Server block for phppgadmin service
server{ server{
server_name phppgadmin.example.com; server_name phppgadmin.example.com;
root /path/to/your/www/phppgadmin; root /var/www/phppgadmin;
access_log /var/log/phppgadmin/access.log; access_log /var/log/phppgadmin/access.log;
error_log /var/log/phppgadmin/error.log; error_log /var/log/phppgadmin/error.log;