Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/phpmyadmin/conf/phpmyadmin.conf

28 lines
520 B

6 years ago
server
{
listen 888;
server_name 127.0.0.1;
6 years ago
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;
}
6 years ago
access_log {$SERVER_PATH}/phpmyadmin/access.log;
3 years ago
error_log {$SERVER_PATH}/phpmyadmin/error.log;
6 years ago
}