-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite-nginx-config.sh
executable file
·67 lines (51 loc) · 1.23 KB
/
write-nginx-config.sh
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
#!/usr/bin/env bash
HOSTNAME=$1
USE_X_FORWARDED=$2
mkdir -p conf
cat >conf/nginx.rancher.local.conf <<EOL
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
error_log /dev/stderr;
gzip on;
gzip_disable "msie6";
upstream rancher {
server 10.0.2.2:8080;
}
server {
listen 80;
server_name proxy_server;
location / {
EOL
if [ $USE_X_FORWARDED = 'true' ]; then
cat >>conf/nginx.rancher.local.conf <<EOL
proxy_set_header X-Forwarded-Proto \$scheme;
proxy_set_header X-Forwarded-Port \$server_port;
proxy_set_header Host $HOSTNAME;
EOL
else
cat >>conf/nginx.rancher.local.conf <<EOL
proxy_set_header X-API-request-url \$scheme://$HOSTNAME\$request_uri;
EOL
fi
cat >>conf/nginx.rancher.local.conf <<EOL
proxy_pass http://rancher;
proxy_http_version 1.1;
proxy_set_header Upgrade \$http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}
EOL