devuan: merge nginx changes from debian
This commit is contained in:
parent
37eecb945d
commit
8dbb543d72
|
|
@ -9,69 +9,36 @@ cd "$(dirname "$0")"
|
||||||
. ./environment.sh
|
. ./environment.sh
|
||||||
|
|
||||||
#send a message
|
#send a message
|
||||||
verbose "Installing Nginx"
|
verbose "Installing the web server"
|
||||||
|
|
||||||
#if [ ."$cpu_architecture" = ."arm" ]; then
|
#change the version of php for arm
|
||||||
#9.x - */stretch/
|
if [ ."$cpu_architecture" = ."arm" ]; then
|
||||||
#8.x - */jessie/
|
#Pi2 and Pi3 Raspbian
|
||||||
#fi
|
#Odroid
|
||||||
if [ ."$php_version" = ."5" ]; then
|
if [ ."$os_codename" = ."stretch" ]; then
|
||||||
#verbose "Switching forcefully to php5* packages"
|
php_version=7.2
|
||||||
which add-apt-repository || apt-get install -y software-properties-common
|
else
|
||||||
#LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
|
php_version=5.6
|
||||||
#LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-compat
|
fi
|
||||||
apt-get update
|
|
||||||
elif [ ."$os_name" = ."Ubuntu" ]; then
|
|
||||||
#16.10.x - */yakkety/
|
|
||||||
#16.04.x - */xenial/
|
|
||||||
#14.04.x - */trusty/
|
|
||||||
if [ ."$os_codename" = ."trusty" ]; then
|
|
||||||
which add-apt-repository || apt-get install -y software-properties-common
|
|
||||||
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
|
|
||||||
apt-get -q update
|
|
||||||
fi
|
|
||||||
elif [ ."$cpu_architecture" = ."arm" ]; then
|
|
||||||
#Pi2 and Pi3 Raspbian
|
|
||||||
#Odroid
|
|
||||||
if [ ."$os_codename" = ."jessie" ]; then
|
|
||||||
echo "deb http://packages.moopi.uk/debian jessie main" > /etc/apt/sources.list.d/moopi.list
|
|
||||||
wget -O - http://packages.moopi.uk/debian/moopi.gpg.key | apt-key add -
|
|
||||||
apt-get -q update
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
#9.x - */stretch/
|
|
||||||
#8.x - */jessie/
|
|
||||||
if [ ."$os_codename" = ."jessie" ]; then
|
|
||||||
echo "deb http://packages.dotdeb.org $os_codename all" > /etc/apt/sources.list.d/dotdeb.list
|
|
||||||
echo "deb-src http://packages.dotdeb.org $os_codename all" >> /etc/apt/sources.list.d/dotdeb.list
|
|
||||||
wget -O - https://www.dotdeb.org/dotdeb.gpg | apt-key add -
|
|
||||||
apt-get -q update
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#use php version 5 for arm
|
#set the version of php
|
||||||
#if [ .$cpu_architecture = .'arm' ]; then
|
if [ ."$os_codename" = ."chimaera" ]; then
|
||||||
# php_version=5
|
php_version=7.4
|
||||||
#fi
|
|
||||||
|
|
||||||
#install dependencies
|
|
||||||
apt-get install -y -q nginx
|
|
||||||
if [ ."$php_version" = ."5" ]; then
|
|
||||||
apt-get install -y -q php5 php5-cli php5-fpm php5-pgsql php5-sqlite php5-odbc php5-curl php5-imap
|
|
||||||
fi
|
fi
|
||||||
if [ ."$php_version" = ."7" ]; then
|
if [ ."$os_codename" = ."beowulf" ]; then
|
||||||
apt-get install -y -q php7.0 php7.0-cli php7.0-fpm php7.0-pgsql php7.0-sqlite3 php7.0-odbc php7.0-curl php7.0-imap php7.0-xml
|
php_version=7.3
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#enable fusionpbx nginx config
|
#enable fusionpbx nginx config
|
||||||
cp nginx/fusionpbx /etc/nginx/sites-available/fusionpbx
|
cp nginx/fusionpbx /etc/nginx/sites-available/fusionpbx
|
||||||
|
|
||||||
#prepare socket name
|
#prepare socket name
|
||||||
if [ ."$php_version" = ."5" ]; then
|
if [ ."$php_version" = ."7.3" ]; then
|
||||||
sed -i /etc/nginx/sites-available/fusionpbx -e 's#unix:.*;#unix:/var/run/php5-fpm.sock;#g'
|
sed -i /etc/nginx/sites-available/fusionpbx -e 's#unix:.*;#unix:/var/run/php/php7.3-fpm.sock;#g'
|
||||||
fi
|
fi
|
||||||
if [ ."$php_version" = ."7" ]; then
|
if [ ."$php_version" = ."7.4" ]; then
|
||||||
sed -i /etc/nginx/sites-available/fusionpbx -e 's#unix:.*;#unix:/var/run/php/php7.0-fpm.sock;#g'
|
sed -i /etc/nginx/sites-available/fusionpbx -e 's#unix:.*;#unix:/var/run/php/php7.4-fpm.sock;#g'
|
||||||
fi
|
fi
|
||||||
ln -s /etc/nginx/sites-available/fusionpbx /etc/nginx/sites-enabled/fusionpbx
|
ln -s /etc/nginx/sites-available/fusionpbx /etc/nginx/sites-enabled/fusionpbx
|
||||||
|
|
||||||
|
|
@ -82,8 +49,15 @@ ln -s /etc/ssl/certs/ssl-cert-snakeoil.pem /etc/ssl/certs/nginx.crt
|
||||||
#remove the default site
|
#remove the default site
|
||||||
rm /etc/nginx/sites-enabled/default
|
rm /etc/nginx/sites-enabled/default
|
||||||
|
|
||||||
|
#update config if LetsEncrypt folder is unwanted
|
||||||
|
# if [ .$letsencrypt_folder = .false ]; then
|
||||||
|
# sed -i '151,155d' /etc/nginx/sites-available/fusionpbx
|
||||||
|
# fi
|
||||||
|
|
||||||
#add the letsencrypt directory
|
#add the letsencrypt directory
|
||||||
mkdir -p /var/www/letsencrypt/
|
if [ .$letsencrypt_folder = .true ]; then
|
||||||
|
mkdir -p /var/www/letsencrypt/
|
||||||
|
fi
|
||||||
|
|
||||||
#restart nginx
|
#restart nginx
|
||||||
service nginx restart
|
/usr/sbin/service nginx restart
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
location ~ \.php$ {
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
@ -23,7 +23,7 @@ server {
|
||||||
|
|
||||||
# Allow the upgrade routines to run longer than normal
|
# Allow the upgrade routines to run longer than normal
|
||||||
location = /core/upgrade/index.php {
|
location = /core/upgrade/index.php {
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
@ -31,22 +31,40 @@ server {
|
||||||
fastcgi_read_timeout 15m;
|
fastcgi_read_timeout 15m;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Disable viewing .htaccess & .htpassword & .db
|
# Disable viewing .htaccess & .htpassword & .db & .git
|
||||||
location ~ .htaccess {
|
location ~ .htaccess {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
location ~ .htpassword {
|
location ~ .htpassword {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
location ~^.+.(db)$ {
|
location ~^.+.(db)$ {
|
||||||
deny all;
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\.git {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\.lua {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\. {
|
||||||
|
deny all;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name fusionpbx;
|
server_name fusionpbx;
|
||||||
if ($uri !~* ^.*(provision|xml_cdr).*$) {
|
|
||||||
|
#redirect letsencrypt to dehydrated
|
||||||
|
location ^~ /.well-known/acme-challenge {
|
||||||
|
default_type "text/plain";
|
||||||
|
auth_basic "off";
|
||||||
|
alias /var/www/dehydrated;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rewrite rule - send to https with an exception for provisioning
|
||||||
|
if ($uri !~* ^.*(provision|xml_cdr|firmware).*$) {
|
||||||
rewrite ^(.*) https://$host$1 permanent;
|
rewrite ^(.*) https://$host$1 permanent;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -57,8 +75,8 @@ server {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
#algo
|
#algo
|
||||||
rewrite "^.*/provision/algom([A-Fa-f0-9]{12})\.conf" /app/provision/?mac=$1&file=algom%7b%24mac%7d.conf last;
|
rewrite "^.*/provision/algom([A-Fa-f0-9]{12})\.conf" /app/provision/?mac=$1&file=algom%7b%24mac%7d.conf last;
|
||||||
|
|
||||||
#mitel
|
#mitel
|
||||||
rewrite "^.*/provision/MN_([A-Fa-f0-9]{12})\.cfg" /app/provision/index.php?mac=$1&file=MN_%7b%24mac%7d.cfg last;
|
rewrite "^.*/provision/MN_([A-Fa-f0-9]{12})\.cfg" /app/provision/index.php?mac=$1&file=MN_%7b%24mac%7d.cfg last;
|
||||||
|
|
@ -66,7 +84,8 @@ server {
|
||||||
|
|
||||||
#grandstream
|
#grandstream
|
||||||
rewrite "^.*/provision/cfg([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/?mac=$1;
|
rewrite "^.*/provision/cfg([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/?mac=$1;
|
||||||
rewrite "^.*/provision/pb([A-Fa-f0-9-]{12,17})/phonebook\.xml$" /app/provision/?mac=$1&file=phonebook.xml;
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})/phonebook\.xml$" /app/provision/?mac=$1&file=phonebook.xml;
|
||||||
|
rewrite "^.*/provision/(phonebook\.xml)?$" /app/provision/index.php?file=$1 last;
|
||||||
#grandstream-wave softphone by ext because Android doesn't pass MAC.
|
#grandstream-wave softphone by ext because Android doesn't pass MAC.
|
||||||
rewrite "^.*/provision/([0-9]{5})/cfg([A-Fa-f0-9]{12}).xml$" /app/provision/?ext=$1;
|
rewrite "^.*/provision/([0-9]{5})/cfg([A-Fa-f0-9]{12}).xml$" /app/provision/?ext=$1;
|
||||||
|
|
||||||
|
|
@ -74,10 +93,9 @@ server {
|
||||||
rewrite "^.*/provision/aastra.cfg$" /app/provision/?mac=$1&file=aastra.cfg;
|
rewrite "^.*/provision/aastra.cfg$" /app/provision/?mac=$1&file=aastra.cfg;
|
||||||
#rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(cfg))?$" /app/provision/?mac=$1 last;
|
#rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(cfg))?$" /app/provision/?mac=$1 last;
|
||||||
|
|
||||||
#yealink common
|
#yealink
|
||||||
|
#rewrite "^.*/provision/(y[0-9]{12})(\.cfg|\.boot)?$" /app/provision/index.php?file=$1$2;
|
||||||
rewrite "^.*/provision/(y[0-9]{12})(\.cfg)?$" /app/provision/index.php?file=$1.cfg;
|
rewrite "^.*/provision/(y[0-9]{12})(\.cfg)?$" /app/provision/index.php?file=$1.cfg;
|
||||||
|
|
||||||
#yealink mac
|
|
||||||
rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/index.php?mac=$1 last;
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/index.php?mac=$1 last;
|
||||||
|
|
||||||
#polycom
|
#polycom
|
||||||
|
|
@ -104,6 +122,9 @@ server {
|
||||||
rewrite "^.*/provision/([A-Fa-f0-9]{12})-contacts\.cfg$" "/app/provision/?mac=$1&file={%24mac}-contacts.cfg";
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})-contacts\.cfg$" "/app/provision/?mac=$1&file={%24mac}-contacts.cfg";
|
||||||
rewrite "^.*/provision/([A-Fa-f0-9]{12})-smartblf\.cfg$" "/app/provision/?mac=$1&file={%24mac}-smartblf.cfg";
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})-smartblf\.cfg$" "/app/provision/?mac=$1&file={%24mac}-smartblf.cfg";
|
||||||
|
|
||||||
|
#Snom
|
||||||
|
rewrite "^.*/provision/-([A-Fa-f0-9]{12})?$" /app/provision/index.php?mac=$1;
|
||||||
|
|
||||||
access_log /var/log/nginx/access.log;
|
access_log /var/log/nginx/access.log;
|
||||||
error_log /var/log/nginx/error.log;
|
error_log /var/log/nginx/error.log;
|
||||||
|
|
||||||
|
|
@ -116,7 +137,7 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
location ~ \.php$ {
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
@ -125,7 +146,7 @@ server {
|
||||||
|
|
||||||
# Allow the upgrade routines to run longer than normal
|
# Allow the upgrade routines to run longer than normal
|
||||||
location = /core/upgrade/index.php {
|
location = /core/upgrade/index.php {
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
@ -133,7 +154,7 @@ server {
|
||||||
fastcgi_read_timeout 15m;
|
fastcgi_read_timeout 15m;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Disable viewing .htaccess & .htpassword & .db
|
# Disable viewing .htaccess & .htpassword & .db & .git
|
||||||
location ~ .htaccess {
|
location ~ .htaccess {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
@ -143,21 +164,33 @@ server {
|
||||||
location ~^.+.(db)$ {
|
location ~^.+.(db)$ {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
location ~ /\.git {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\.lua {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\. {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 443;
|
listen 443 ssl;
|
||||||
server_name fusionpbx;
|
server_name fusionpbx;
|
||||||
ssl on;
|
|
||||||
ssl_certificate /etc/ssl/certs/nginx.crt;
|
ssl_certificate /etc/ssl/certs/nginx.crt;
|
||||||
ssl_certificate_key /etc/ssl/private/nginx.key;
|
ssl_certificate_key /etc/ssl/private/nginx.key;
|
||||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
||||||
ssl_ciphers HIGH:!ADH:!MD5:!aNULL;
|
ssl_ciphers HIGH:!ADH:!MD5:!aNULL;
|
||||||
|
#ssl_dhparam
|
||||||
|
|
||||||
#letsencrypt
|
#redirect letsencrypt to dehydrated
|
||||||
location /.well-known/acme-challenge {
|
location ^~ /.well-known/acme-challenge {
|
||||||
root /var/www/letsencrypt;
|
default_type "text/plain";
|
||||||
}
|
auth_basic "off";
|
||||||
|
alias /var/www/dehydrated;
|
||||||
|
}
|
||||||
|
|
||||||
#REST api
|
#REST api
|
||||||
if ($uri ~* ^.*/api/.*$) {
|
if ($uri ~* ^.*/api/.*$) {
|
||||||
|
|
@ -165,8 +198,11 @@ server {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
#algo
|
#message media
|
||||||
rewrite "^.*/provision/algom([A-Fa-f0-9]{12})\.conf" /app/provision/?mac=$1&file=algom%7b%24mac%7d.conf last;
|
rewrite "^/app/messages/media/(.*)/(.*)" /app/messages/message_media.php?id=$1&action=download last;
|
||||||
|
|
||||||
|
#algo
|
||||||
|
rewrite "^.*/provision/algom([A-Fa-f0-9]{12})\.conf" /app/provision/?mac=$1&file=algom%7b%24mac%7d.conf last;
|
||||||
|
|
||||||
#mitel
|
#mitel
|
||||||
rewrite "^.*/provision/MN_([A-Fa-f0-9]{12})\.cfg" /app/provision/index.php?mac=$1&file=MN_%7b%24mac%7d.cfg last;
|
rewrite "^.*/provision/MN_([A-Fa-f0-9]{12})\.cfg" /app/provision/index.php?mac=$1&file=MN_%7b%24mac%7d.cfg last;
|
||||||
|
|
@ -174,7 +210,8 @@ server {
|
||||||
|
|
||||||
#grandstream
|
#grandstream
|
||||||
rewrite "^.*/provision/cfg([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/?mac=$1;
|
rewrite "^.*/provision/cfg([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/?mac=$1;
|
||||||
rewrite "^.*/provision/pb([A-Fa-f0-9-]{12,17})/phonebook\.xml$" /app/provision/?mac=$1&file=phonebook.xml;
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})/phonebook\.xml$" /app/provision/?mac=$1&file=phonebook.xml;
|
||||||
|
rewrite "^.*/provision/(phonebook\.xml)?$" /app/provision/index.php?file=$1 last;
|
||||||
#grandstream-wave softphone by ext because Android doesn't pass MAC.
|
#grandstream-wave softphone by ext because Android doesn't pass MAC.
|
||||||
rewrite "^.*/provision/([0-9]{5})/cfg([A-Fa-f0-9]{12}).xml$" /app/provision/?ext=$1;
|
rewrite "^.*/provision/([0-9]{5})/cfg([A-Fa-f0-9]{12}).xml$" /app/provision/?ext=$1;
|
||||||
|
|
||||||
|
|
@ -182,10 +219,9 @@ server {
|
||||||
rewrite "^.*/provision/aastra.cfg$" /app/provision/?mac=$1&file=aastra.cfg;
|
rewrite "^.*/provision/aastra.cfg$" /app/provision/?mac=$1&file=aastra.cfg;
|
||||||
#rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(cfg))?$" /app/provision/?mac=$1 last;
|
#rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(cfg))?$" /app/provision/?mac=$1 last;
|
||||||
|
|
||||||
#yealink common
|
#yealink
|
||||||
|
#rewrite "^.*/provision/(y[0-9]{12})(\.cfg|\.boot)?$" /app/provision/index.php?file=$1$2;
|
||||||
rewrite "^.*/provision/(y[0-9]{12})(\.cfg)?$" /app/provision/index.php?file=$1.cfg;
|
rewrite "^.*/provision/(y[0-9]{12})(\.cfg)?$" /app/provision/index.php?file=$1.cfg;
|
||||||
|
|
||||||
#yealink mac
|
|
||||||
rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/index.php?mac=$1 last;
|
rewrite "^.*/provision/([A-Fa-f0-9]{12})(\.(xml|cfg))?$" /app/provision/index.php?mac=$1 last;
|
||||||
|
|
||||||
#polycom
|
#polycom
|
||||||
|
|
@ -223,9 +259,17 @@ server {
|
||||||
index index.php;
|
index index.php;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi_params;
|
||||||
|
fastcgi_param SCRIPT_FILENAME /var/www/fusionpbx$fastcgi_script_name;
|
||||||
|
}
|
||||||
|
|
||||||
# Allow the upgrade routines to run longer than normal
|
# Allow the upgrade routines to run longer than normal
|
||||||
location = /core/upgrade/index.php {
|
location = /core/upgrade/index.php {
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
#fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
@ -233,15 +277,7 @@ server {
|
||||||
fastcgi_read_timeout 15m;
|
fastcgi_read_timeout 15m;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ \.php$ {
|
# Disable viewing .htaccess & .htpassword & .db & .git
|
||||||
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
|
||||||
#fastcgi_pass 127.0.0.1:9000;
|
|
||||||
fastcgi_index index.php;
|
|
||||||
include fastcgi_params;
|
|
||||||
fastcgi_param SCRIPT_FILENAME /var/www/fusionpbx$fastcgi_script_name;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Disable viewing .htaccess & .htpassword & .db
|
|
||||||
location ~ .htaccess {
|
location ~ .htaccess {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
@ -251,4 +287,13 @@ server {
|
||||||
location ~^.+.(db)$ {
|
location ~^.+.(db)$ {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
location ~ /\.git {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\.lua {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
location ~ /\. {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue