streams/.homeinstall/adminer-nginx.inc.template
Papa Dragon 6d845d472a Added adminer configuration for Nginx
- added include line in the nginx template
- added a template for the adminer conf to include
- updated the setup script
2020-09-06 16:37:36 +02:00

10 lines
384 B
Text

location /adminer {
root /usr/share/adminer;
index index.php index.html index.htm;
location ~ ^/adminer/(.+\.php)$ {
try_files $uri $uri/ /index.php?$query_string;
fastcgi_pass unix:PHP_FPM_SOCK;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}