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

10 lines
355 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;
uwsgi_pass unix:///run/uwsgi/app/pgadmin/socket;
# Allow pgadmin to use 'eval' without blocking the execution. But keep a warning.
add_header Content-Security-Policy-Report-Only "script-src https: 'unsafe-eval'";
2017-11-14 16:05:26 +01:00
2017-11-16 21:10:21 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}