23 lines
618 B
Plaintext
23 lines
618 B
Plaintext
server {
|
|
listen 192.168.0.115:8084 ssl;
|
|
server_name phpldapadmin-local.two.secure.squirrelcube.xyz;
|
|
root /srv/www/phpLDAPadmin/phpLDAPadmin/htdocs;
|
|
index index.php;
|
|
|
|
ssl_certificate /etc/ssl/tp/fullchain.pem;
|
|
ssl_certificate_key /etc/ssl/tp/private/privkey.pem;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
fastcgi_index index.php;
|
|
fastcgi_pass 172.168.100.2:9100;
|
|
}
|
|
}
|
|
|