-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnginx.conf
69 lines (51 loc) · 1.07 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
worker_processes auto;
events {
worker_connections 768;
}
http {
include mime.types;
sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
default_type application/octet-stream;
gzip on;
server {
listen 443 ssl;
server_name api.onemoreglass.xyz;
ssl_certificate /root/mycert.crt;
ssl_certificate_key /root/mycert.key;
location / {
proxy_pass http://localhost:8080;
}
}
server {
listen 443 ssl;
server_name www.onemoreglass.xyz;
ssl_certificate /root/mycert.crt;
ssl_certificate_key /root/mycert.key;
location ~* ^(.*)$ {
rewrite ^(.*)$ https://onemoreglass.xyz$1 permanent;
break;
}
}
server {
listen 443 ssl;
server_name onemoreglass.xyz;
ssl_certificate /root/mycert.crt;
ssl_certificate_key /root/mycert.key;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ /index.html;
}
}
server {
listen 443 ssl default_server;
server_name _;
ssl_certificate /root/mycert.crt;
ssl_certificate_key /root/mycert.key;
location / {
return 404;
}
}
}