added nginx-phpmyadmin.conf
This commit is contained in:
@@ -106,8 +106,8 @@ server {
|
||||
}
|
||||
|
||||
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
||||
try_files $uri @rewrite;
|
||||
expires max;
|
||||
log_not_found off;
|
||||
try_files $uri @rewrite;
|
||||
expires max;
|
||||
log_not_found off;
|
||||
}
|
||||
}
|
||||
|
33
assets/nginx-phpmyadmin.conf
Normal file
33
assets/nginx-phpmyadmin.conf
Normal file
@@ -0,0 +1,33 @@
|
||||
server {
|
||||
listen 80;
|
||||
location /phpmyadmin {
|
||||
# server_name phpmyadmin.idroot.net;
|
||||
root /usr/share/phpmyadmin;
|
||||
|
||||
location / {
|
||||
index index.php;
|
||||
}
|
||||
|
||||
## Images and static content is treated different
|
||||
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
|
||||
access_log off;
|
||||
expires 30d;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
location ~ /(libraries|setup/frames|setup/libs) {
|
||||
deny all;
|
||||
return 404;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,10 +1,10 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name yourdomain.ltd;
|
||||
|
||||
root /var/www/yourdomain.ltd/public_html;
|
||||
index index.html index.php;
|
||||
|
||||
server_name yourdomain.ltd;
|
||||
|
||||
charset utf-8;
|
||||
|
||||
location / {
|
||||
|
Reference in New Issue
Block a user