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

28 lines
741 B
Nginx Configuration File
Raw Normal View History

2019-02-17 15:42:09 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2017-08-29 02:34:05 +02:00
2019-02-17 15:42:09 +01:00
# Path to source
2023-11-02 18:44:07 +01:00
alias __INSTALL_DIR__/;
2017-08-29 02:34:05 +02:00
2014-01-14 22:57:44 +01:00
index index.php;
2017-08-29 02:34:05 +02:00
2015-07-14 09:26:47 +02:00
client_max_body_size 50M;
2017-08-29 02:34:05 +02:00
2014-01-14 22:57:44 +01:00
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
2014-01-14 22:57:44 +01:00
fastcgi_index index.php;
include fastcgi_params;
2015-01-18 19:46:29 +01:00
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_read_timeout 600;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
2014-01-14 22:57:44 +01:00
}
2014-05-28 17:06:08 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2014-01-14 22:57:44 +01:00
}