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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
server
{
listen 80;
#listen [::]:80;
server_name xiaobanma.net *.xiaobanma.net;

# 将所有 http 跳转到 https
return 301 https://bbs.xiaobanma.net$request_uri;

index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/bbs.xiaobanma.net;

include rewrite/discuzx.conf;
#error_page 404 /404.html;

# Deny access to PHP files in specific directory
#location ~ /(wp-contentuploadswp-includesimages)/.*\.php$ { deny all; }

include enable-php.conf;

location ~ .*\.(gifjpgjpegpngbmpswf)$
{
expires 30d;
}

location ~ .*\.(jscss)?$
{
expires 12h;
}

location ~ /.well-known {
allow all;
}

location ~ /\.
{
deny all;
}

access_log /home/wwwlogs/bbs.xiaobanma.net.log;
}

server
{
listen 443 ssl http2;
#listen [::]:443 ssl http2;
server_name xiaobanma.net *.xiaobanma.net;

# 如果不是 bbs.xiaobanma.net 的域名,301 重定向到 bbs.xiaobanma.net
if ($host != 'bbs.xiaobanma.net') {
return 301 https://bbs.xiaobanma.net$request_uri;
}

index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/bbs.xiaobanma.net;
ssl on;
ssl_certificate /usr/local/nginx/conf/ssl/xiaobanma.net/fullchain.cer;
ssl_certificate_key /usr/local/nginx/conf/ssl/xiaobanma.net/xiaobanma.net.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
ssl_session_cache builtin:1000 shared:SSL:10m;
# openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;

include rewrite/discuzx.conf;
#error_page 404 /404.html;

# Deny access to PHP files in specific directory
#location ~ /(wp-contentuploadswp-includesimages)/.*\.php$ { deny all; }

include enable-php.conf;

location ~ .*\.(gifjpgjpegpngbmpswf)$
{
expires 30d;
}

location ~ .*\.(jscss)?$
{
expires 12h;
}

location ~ /.well-known {
allow all;
}

location ~ /\.
{
deny all;
}

access_log /home/wwwlogs/bbs.xiaobanma.net.log;
}