30 lines
714 B
Plaintext
30 lines
714 B
Plaintext
|
include php-fpm;
|
||
|
|
||
|
server {
|
||
|
server_name lsd25.dev lsd-25.dev mcdonalds.pw;
|
||
|
listen 202.61.255.116:443;
|
||
|
listen [2a03:4000:55:d20::]:443;
|
||
|
root /mnt/gluster01/web/shlink/public;
|
||
|
index index.php;
|
||
|
charset utf-8;
|
||
|
|
||
|
ssl_certificate /etc/ssl/lysergic/fullchain.pem;
|
||
|
ssl_certificate_key /etc/ssl/lysergic/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;
|
||
|
}
|
||
|
|
||
|
location ~ /\.ht {
|
||
|
deny all;
|
||
|
}
|
||
|
}
|