Simple Linux Panel
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.
mdserver-web/plugins/pgadmin/conf/pgadmin.conf

21 lines
462 B

7 months ago
server
{
7 months ago
listen 5051;
7 months ago
server_name 127.0.0.1;
index index.html index.htm index.php;
root {$SERVER_PATH}/pgadmin;
#error_page 404 /404.html;
#AUTH_START
auth_basic "Authorization";
7 months ago
auth_basic_user_file {$SERVER_PATH}/pgadmin/pg.pass;
7 months ago
#AUTH_END
7 months ago
location / {
proxy_pass http://unix:/tmp/pgadmin4.sock;
7 months ago
}
access_log {$SERVER_PATH}/pgadmin/access.log;
error_log {$SERVER_PATH}/pgadmin/error.log;
}