1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pgadmin_ynh.git synced 2024-09-03 19:56:38 +02:00
pgadmin_ynh/conf/nginx.conf

11 lines
231 B
Nginx Configuration File
Raw Normal View History

2017-11-14 16:05:26 +01:00
location __PATH__ {
2018-03-10 16:32:11 +01:00
include uwsgi_params;
2020-11-28 17:31:42 +01:00
uwsgi_pass unix:///run/__NAME__/app.socket;
2017-11-14 16:05:26 +01:00
2018-11-07 19:30:34 +01:00
uwsgi_read_timeout 180;
uwsgi_send_timeout 180;
2017-11-16 21:10:21 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2018-11-07 19:30:34 +01:00
}