mdserver-web/plugins/phpmyadmin/conf/phpmyadmin.conf

27 lines
468 B
Plaintext
Raw Permalink Normal View History

2019-01-07 06:56:53 -05:00
server
{
listen 888;
2019-07-31 23:07:12 -04:00
server_name 127.0.0.1;
2019-01-07 06:56:53 -05:00
index index.html index.htm index.php;
root {$SERVER_PATH}/phpmyadmin;
#error_page 404 /404.html;
include enable-php-{$PHP_VER}.conf;
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
2019-01-08 04:23:05 -05:00
access_log {$SERVER_PATH}/phpmyadmin/access.log;
2019-01-07 06:56:53 -05:00
}