FEA: Templates ajustments
This commit is contained in:
parent
6f1b9a41f8
commit
1528e6870e
@ -1,12 +1,12 @@
|
||||
# Upstream to abstract backend connection(s) for PHP.
|
||||
# Additional upstreams can be added to /etc/nginx/upstreams/*.conf and then you just
|
||||
# change `default php71` to whatever the new upstream is (could be php70 for example).
|
||||
upstream php71 {
|
||||
server unix:/run/php/php7.1-fpm.sock;
|
||||
# change `default php73` to whatever the new upstream is (could be php70 for example).
|
||||
upstream php73 {
|
||||
server unix:/run/php/php7.3-fpm.sock;
|
||||
}
|
||||
|
||||
include /etc/nginx/upstreams/*.conf;
|
||||
|
||||
map '' $upstream {
|
||||
default php71;
|
||||
default php73;
|
||||
}
|
||||
@ -1,49 +0,0 @@
|
||||
server {
|
||||
# Ports to listen on
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
# Server name to listen for
|
||||
server_name multisite-subdirectory.com;
|
||||
|
||||
# Path to document root
|
||||
root /sites/multisite-subdirectory.com/public;
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/multisite-subdirectory.com/logs/access.log;
|
||||
error_log /sites/multisite-subdirectory.com/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
|
||||
# Multisite subdirectory install
|
||||
include global/server/multisite-subdirectory.conf;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
include global/fastcgi-params.conf;
|
||||
|
||||
# Use the php pool defined in the upstream variable.
|
||||
# See global/php-pool.conf for definition.
|
||||
fastcgi_pass $upstream;
|
||||
}
|
||||
|
||||
# Rewrite robots.txt
|
||||
rewrite ^/robots.txt$ /index.php last;
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.multisite-subdirectory.com;
|
||||
|
||||
return 301 $scheme://multisite-subdirectory.com$request_uri;
|
||||
}
|
||||
@ -1,85 +0,0 @@
|
||||
# Define path to cache and memory zone. The memory zone should be unique.
|
||||
# keys_zone=ssl-fastcgi-cache.com:100m creates the memory zone and sets the maximum size in MBs.
|
||||
# inactive=60m will remove cached items that haven't been accessed for 60 minutes or more.
|
||||
fastcgi_cache_path /sites/ssl-fastcgi-cache.com/cache levels=1:2 keys_zone=ssl-fastcgi-cache.com:100m inactive=60m;
|
||||
|
||||
server {
|
||||
# Ports to listen on, uncomment one.
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
# Server name to listen for
|
||||
server_name ssl-fastcgi-cache.com;
|
||||
|
||||
# Path to document root
|
||||
root /sites/ssl-fastcgi-cache.com/public;
|
||||
|
||||
# Paths to certificate files.
|
||||
ssl_certificate /etc/letsencrypt/live/ssl-fastcgi-cache.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/ssl-fastcgi-cache.com/privkey.pem;
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/ssl-fastcgi-cache.com/logs/access.log;
|
||||
error_log /sites/ssl-fastcgi-cache.com/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
|
||||
# Fastcgi cache rules
|
||||
include global/server/fastcgi-cache.conf;
|
||||
|
||||
# SSL rules
|
||||
include global/server/ssl.conf;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
include global/fastcgi-params.conf;
|
||||
|
||||
# Use the php pool defined in the upstream variable.
|
||||
# See global/php-pool.conf for definition.
|
||||
fastcgi_pass $upstream;
|
||||
|
||||
# Skip cache based on rules in global/server/fastcgi-cache.conf.
|
||||
fastcgi_cache_bypass $skip_cache;
|
||||
fastcgi_no_cache $skip_cache;
|
||||
|
||||
# Define memory zone for caching. Should match key_zone in fastcgi_cache_path above.
|
||||
fastcgi_cache ssl-fastcgi-cache.com;
|
||||
|
||||
# Define caching time.
|
||||
fastcgi_cache_valid 60m;
|
||||
}
|
||||
|
||||
# Rewrite robots.txt
|
||||
rewrite ^/robots.txt$ /index.php last;
|
||||
|
||||
# Uncomment if using the fastcgi_cache_purge module and Nginx Helper plugin (https://wordpress.org/plugins/nginx-helper/)
|
||||
# location ~ /purge(/.*) {
|
||||
# fastcgi_cache_purge ssl-fastcgi-cache.com "$scheme$request_method$host$1";
|
||||
# }
|
||||
}
|
||||
|
||||
# Redirect http to https
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name ssl-fastcgi-cache.com www.ssl-fastcgi-cache.com;
|
||||
|
||||
return 301 https://ssl-fastcgi-cache.com$request_uri;
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 443;
|
||||
listen [::]:443;
|
||||
server_name www.ssl-fastcgi-cache.com;
|
||||
|
||||
return 301 https://ssl-fastcgi-cache.com$request_uri;
|
||||
}
|
||||
@ -1,62 +0,0 @@
|
||||
server {
|
||||
# Ports to listen on, uncomment one.
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
# Server name to listen for
|
||||
server_name ssl.com;
|
||||
|
||||
# Path to document root
|
||||
root /sites/ssl.com/public;
|
||||
|
||||
# Paths to certificate files.
|
||||
ssl_certificate /etc/letsencrypt/live/ssl.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/ssl.com/privkey.pem;
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/ssl.com/logs/access.log;
|
||||
error_log /sites/ssl.com/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
|
||||
# SSL rules
|
||||
include global/server/ssl.conf;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
include global/fastcgi-params.conf;
|
||||
|
||||
# Use the php pool defined in the upstream variable.
|
||||
# See global/php-pool.conf for definition.
|
||||
fastcgi_pass $upstream;
|
||||
}
|
||||
|
||||
# Rewrite robots.txt
|
||||
rewrite ^/robots.txt$ /index.php last;
|
||||
}
|
||||
|
||||
# Redirect http to https
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name ssl.com www.ssl.com;
|
||||
|
||||
return 301 https://ssl.com$request_uri;
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 443;
|
||||
listen [::]:443;
|
||||
server_name www.ssl.com;
|
||||
|
||||
return 301 https://ssl.com$request_uri;
|
||||
}
|
||||
@ -4,17 +4,17 @@ server {
|
||||
listen [::]:80;
|
||||
|
||||
# Server name to listen for
|
||||
server_name multisite-subdomain.com *.multisite-subdomain.com;
|
||||
server_name {domain} www.{domain};
|
||||
|
||||
# Path to document root
|
||||
root /sites/multisite-subdomain.com/public;
|
||||
root {path}{root};
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/multisite-subdomain.com/logs/access.log;
|
||||
error_log /sites/multisite-subdomain.com/logs/error.log;
|
||||
access_log {path}/logs/access.log;
|
||||
error_log {path}/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
@ -34,13 +34,4 @@ server {
|
||||
|
||||
# Rewrite robots.txt
|
||||
rewrite ^/robots.txt$ /index.php last;
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.multisite-subdomain.com;
|
||||
|
||||
return 301 $scheme://multisite-subdomain.com$request_uri;
|
||||
}
|
||||
@ -4,17 +4,17 @@ server {
|
||||
listen [::]:80;
|
||||
|
||||
# Server name to listen for
|
||||
server_name singlesite.com;
|
||||
server_name {domain} www.{domain};
|
||||
|
||||
# Path to document root
|
||||
root /sites/singlesite.com/public;
|
||||
root {path}{root};
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/singlesite.com/logs/access.log;
|
||||
error_log /sites/singlesite.com/logs/error.log;
|
||||
access_log {path}/logs/access.log;
|
||||
error_log {path}/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
@ -35,12 +35,3 @@ server {
|
||||
# Rewrite robots.txt
|
||||
rewrite ^/robots.txt$ /index.php last;
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.singlesite.com;
|
||||
|
||||
return 301 $scheme://singlesite.com$request_uri;
|
||||
}
|
||||
@ -1,7 +1,7 @@
|
||||
# Define path to cache and memory zone. The memory zone should be unique.
|
||||
# keys_zone=fastcgi-cache.com:100m creates the memory zone and sets the maximum size in MBs.
|
||||
# keys_zone={domain}:100m creates the memory zone and sets the maximum size in MBs.
|
||||
# inactive=60m will remove cached items that haven't been accessed for 60 minutes or more.
|
||||
fastcgi_cache_path /sites/fastcgi-cache.com/cache levels=1:2 keys_zone=fastcgi-cache.com:100m inactive=60m;
|
||||
fastcgi_cache_path {path}/cache levels=1:2 keys_zone={domain}:100m inactive=60m;
|
||||
|
||||
server {
|
||||
# Ports to listen on
|
||||
@ -9,17 +9,17 @@ server {
|
||||
listen [::]:80;
|
||||
|
||||
# Server name to listen for
|
||||
server_name fastcgi-cache.com;
|
||||
server_name {domain} www.{domain};
|
||||
|
||||
# Path to document root
|
||||
root /sites/fastcgi-cache.com/public;
|
||||
root {path}{root};
|
||||
|
||||
# File to be used as index
|
||||
index index.php;
|
||||
|
||||
# Overrides logs defined in nginx.conf, allows per site logs.
|
||||
access_log /sites/fastcgi-cache.com/logs/access.log;
|
||||
error_log /sites/fastcgi-cache.com/logs/error.log;
|
||||
access_log {path}/logs/access.log;
|
||||
error_log {path}/logs/error.log;
|
||||
|
||||
# Default server block rules
|
||||
include global/server/defaults.conf;
|
||||
@ -44,7 +44,7 @@ server {
|
||||
fastcgi_no_cache $skip_cache;
|
||||
|
||||
# Define memory zone for caching. Should match key_zone in fastcgi_cache_path above.
|
||||
fastcgi_cache fastcgi-cache.com;
|
||||
fastcgi_cache {domain};
|
||||
|
||||
# Define caching time.
|
||||
fastcgi_cache_valid 60m;
|
||||
@ -55,15 +55,6 @@ server {
|
||||
|
||||
# Uncomment if using the fastcgi_cache_purge module and Nginx Helper plugin (https://wordpress.org/plugins/nginx-helper/)
|
||||
# location ~ /purge(/.*) {
|
||||
# fastcgi_cache_purge fastcgi-cache.com "$scheme$request_method$host$1";
|
||||
# fastcgi_cache_purge {domain} "$scheme$request_method$host$1";
|
||||
# }
|
||||
}
|
||||
|
||||
# Redirect www to non-www
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.fastcgi-cache.com;
|
||||
|
||||
return 301 $scheme://fastcgi-cache.com$request_uri;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user