mirror of https://github.com/midoks/mdserver-web
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.
38 lines
737 B
38 lines
737 B
server
|
|
{
|
|
listen 888;
|
|
server_name 127.0.0.1;
|
|
index index.html index.htm index.php;
|
|
root {$SERVER_PATH}/phpldapadmin;
|
|
|
|
#error_page 404 /404.html;
|
|
include {$PHP_CONF_PATH}/enable-php-{$PHP_VER}.conf;
|
|
|
|
#AUTH_START
|
|
auth_basic "Authorization";
|
|
auth_basic_user_file {$SERVER_PATH}/phpldapadmin/pma.pass;
|
|
#AUTH_END
|
|
|
|
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
|
|
{
|
|
expires 30d;
|
|
}
|
|
|
|
location ~ .*\.(js|css)?$
|
|
{
|
|
expires 12h;
|
|
}
|
|
|
|
location ~ /.*\.(log|pass|json|pl)$ {
|
|
deny all;
|
|
}
|
|
|
|
|
|
location ~ /\.
|
|
{
|
|
deny all;
|
|
}
|
|
|
|
access_log {$SERVER_PATH}/phpldapadmin/access.log;
|
|
error_log {$SERVER_PATH}/phpldapadmin/error.log;
|
|
} |