-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx_vhost_example_docker_install.conf
44 lines (33 loc) · 1.17 KB
/
nginx_vhost_example_docker_install.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
server {
listen 80;
server_name YOUR_DOMAIN;
# petite astuce pour lets'encrypt
location /.well-known/acme-challenge/ {
root /var/www/fzoc/certbot;
}
return 301 https://$host$request_uri;
}
server {
listen 443;
server_name YOUR_DOMAIN;
ssl on;
ssl_certificate PATH_TO_PEM.pem;
ssl_certificate_key PATH_TO_PEM.key;
access_log /var/log/nginx/fzoc-access.log combined;
error_log /var/log/nginx/fzoc-error.log error;
gzip on;
gzip_types application/json;
gzip_proxied no-cache no-store private expired auth;
gzip_min_length 1000;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_http_version 1.1;
proxy_redirect http:// https://;
proxy_pass "http://127.0.0.1:8090";
}
}