forked from stepan-mitkin/drakonhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
182 lines (142 loc) · 4.15 KB
/
nginx.conf
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
error_log /var/log/nginx/error.log;
access_log /dev/null;
#log_format main '$remote_addr - $remote_user [$time_local] '
# '"$request" $status $body_bytes_sent session_id="$cookie_session_id" '
# 'referer="$http_referer" "$http_user_agent"';
#access_log /var/log/nginx/access.log main;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
charset utf-8;
server {
listen 8080;
server_name drakon-editor.com;
return 301 https://drakonhub.com:443$request_uri;
}
server {
listen 8080;
server_name drakonhub.com www.drakonhub.com;
return 301 https://drakonhub.com:443$request_uri;
}
server {
listen 8083 ssl;
server_name drakon-editor.com;
ssl_certificate /dewt/ssl/bundle.crt;
ssl_certificate_key /dewt/ssl/drakon-editor.com.key;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# Forward secrecy settings
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4";
ssl_dhparam /dewt/ssl/dhparam.pem;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 12M;
location /api/ {
return 404;
}
location / {
return 301 https://drakonhub.com:443$request_uri;
}
}
server {
listen 8083 ssl;
server_name www.drakonhub.com;
ssl_certificate /dewt/ssl/drakonhub.crt;
ssl_certificate_key /dewt/ssl/drakonhub.key;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# Forward secrecy settings
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4";
ssl_dhparam /dewt/ssl/dhparam.pem;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 12M;
location /api/ {
return 404;
}
location / {
return 301 https://drakonhub.com:443$request_uri;
}
}
server {
listen 8083 ssl;
server_name drakonhub.com;
ssl_certificate /dewt/ssl/drakonhub.crt;
ssl_certificate_key /dewt/ssl/drakonhub.key;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# Forward secrecy settings
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4";
ssl_dhparam /dewt/ssl/dhparam.pem;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 12M;
location / {
proxy_pass http://127.0.0.1:8090;
}
location /static/ {
root /dewt;
}
location /static/images/ {
root /dewt;
}
location /static/libs/ {
root /dewt;
}
location /static/fonts/ {
root /dewt;
}
location /files/ {
root /dewt;
}
}
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}