forked from spinupwp/wordpress-nginx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-site-with-caching.com
77 lines (58 loc) · 2.2 KB
/
single-site-with-caching.com
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Define path to cache and memory zone. The memory zone should be unique.
# keys_zone=single-site-with-caching.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/single-site-with-caching.com/cache levels=1:2 keys_zone=single-site-with-caching.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 single-site-with-caching.com;
# Path to document root
root /sites/single-site-with-caching.com/public;
# Paths to certificate files.
ssl_certificate /etc/letsencrypt/live/single-site-with-caching.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/single-site-with-caching.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/single-site-with-caching.com/logs/access.log;
error_log /sites/single-site-with-caching.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 single-site-with-caching.com;
# Define caching time.
fastcgi_cache_valid 60m;
}
}
# Redirect http to https
server {
listen 80;
listen [::]:80;
server_name single-site-with-caching.com www.single-site-with-caching.com;
return 301 https://single-site-with-caching.com$request_uri;
}
# Redirect www to non-www
server {
listen 443;
listen [::]:443;
server_name www.single-site-with-caching.com;
return 301 https://single-site-with-caching.com$request_uri;
}