forked from aqzt/kjyw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx-proxy2.sh
150 lines (136 loc) · 3.99 KB
/
nginx-proxy2.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
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
#!/bin/bash
export PATH=$PATH:/bin:/usr/bin:/usr/local/bin:/usr/sbin
NGINX_ROOT="/data/www/wwwroot"
NGINX_PORT=80
NGINX_USER=nginx
NGINX_GROUP=nginx
NGINX_VERSION="nginx-1.10.3"
NGINX_PREFIX="/opt/nginx-proxy"
NGINX_PCRE_VERSION="pcre-8.40"
NGINX_ZLIB_VERSION="zlib-1.2.8"
NGINX_OPENSSL_VERSION="openssl-1.0.2k"
NGINX_COMPILE_COMMAND="./configure --prefix=/opt/nginx-proxy --sbin-path=/opt/nginx-proxy/sbin/nginx --conf-path=/opt/nginx-proxy/etc/nginx.conf --error-log-path=/opt/nginx-proxy/log/nginx.log --pid-path=/opt/nginx-proxy/var/run/nginx.pid --lock-path=/opt/nginx-proxy/var/lock/nginx.lock --http-log-path=/opt/nginx-proxy/log/access.log --http-client-body-temp-path=/opt/nginx-proxy/client_temp --http-proxy-temp-path=/opt/nginx-proxy/proxy_temp --http-fastcgi-temp-path=/opt/nginx-proxy/fastcgi_temp --http-uwsgi-temp-path=/opt/nginx-proxy/uwsgi_temp --http-scgi-temp-path=/opt/nginx-proxy/scgi_temp --with-pcre=../$NGINX_PCRE_VERSION --with-openssl=../$NGINX_OPENSSL_VERSION --with-zlib=../$NGINX_ZLIB_VERSION --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-file-aio --with-ipv6 --with-http_realip_module --with-http_gunzip_module --with-http_secure_link_module --with-http_stub_status_module"
tar zxvf $NGINX_ZLIB_VERSION.tar.gz
cd $NGINX_ZLIB_VERSION
./configure && make && make install
cd ../
tar zxvf $NGINX_PCRE_VERSION.tar.gz
cd $NGINX_PCRE_VERSION
./configure && make && make install
cd ../
tar zxvf $NGINX_OPENSSL_VERSION.tar.gz
tar zxvf $NGINX_VERSION.tar.gz
cd $NGINX_VERSION
$NGINX_COMPILE_COMMAND
make -j8 && make install
cat > /etc/init.d/nginx-proxy <<EOF
#!/bin/sh
. /etc/rc.d/init.d/functions
if [ -f /etc/sysconfig/nginx ]; then
. /etc/sysconfig/nginx
fi
prog=nginx-proxy
nginx=\${NGINX-/opt/nginx-proxy/sbin/nginx}
conffile=\${CONFFILE-/opt/nginx-proxy/etc/nginx.conf}
lockfile=\${LOCKFILE-/opt/nginx-proxy/var/lock/nginx.lock}
pidfile=\${PIDFILE-/opt/nginx-proxy/var/run/nginx.pid}
SLEEPMSEC=100000
RETVAL=0
start() {
echo -n \$"Starting \$prog: "
daemon --pidfile=\${pidfile} \${nginx} -c \${conffile}
RETVAL=\$?
echo
[ \$RETVAL = 0 ] && touch \${lockfile}
return \$RETVAL
}
stop() {
echo -n \$"Stopping \$prog: "
killproc -p \${pidfile} \${prog}
RETVAL=\$?
echo
[ \$RETVAL = 0 ] && rm -f \${lockfile} \${pidfile}
}
reload() {
echo -n \$"Reloading \$prog: "
killproc -p \${pidfile} \${prog} -HUP
RETVAL=\$?
echo
}
upgrade() {
oldbinpidfile=\${pidfile}.oldbin
configtest -q || return 6
echo -n \$"Staring new master \$prog: "
killproc -p \${pidfile} \${prog} -USR2
RETVAL=\$?
echo
/bin/usleep \$SLEEPMSEC
if [ -f \${oldbinpidfile} -a -f \${pidfile} ]; then
echo -n \$"Graceful shutdown of old \$prog: "
killproc -p \${oldbinpidfile} \${prog} -QUIT
RETVAL=\$?
echo
else
echo \$"Upgrade failed!"
return 1
fi
}
configtest() {
if [ "\$#" -ne 0 ] ; then
case "\$1" in
-q)
FLAG=\$1
;;
*)
;;
esac
shift
fi
\${nginx} -t -c \${conffile} \$FLAG
RETVAL=\$?
return \$RETVAL
}
rh_status() {
status -p \${pidfile} \${nginx}
}
# See how we were called.
case "\$1" in
start)
rh_status >/dev/null 2>&1 && exit 0
start
;;
stop)
stop
;;
status)
rh_status
RETVAL=\$?
;;
restart)
configtest -q || exit \$RETVAL
stop
start
;;
upgrade)
upgrade
;;
condrestart|try-restart)
if rh_status >/dev/null 2>&1; then
stop
start
fi
;;
force-reload|reload)
reload
;;
configtest)
configtest
;;
*)
echo \$"Usage: \$prog {start|stop|restart|condrestart|try-restart|force-reload|upgrade|reload|status|help|configtest}"
RETVAL=2
esac
exit \$RETVAL
EOF
chmod 777 /etc/init.d/nginx-proxy
echo ok