Skip to content

Commit dc49023

Browse files
author
Dmitry Berezovsky
committed
Initial
1 parent f714d91 commit dc49023

6 files changed

+254
-0
lines changed

Dockerfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
FROM logicify/python-wsgi:latest
2+
MAINTAINER "Dmitry Berezovsky <[email protected]>"
3+
4+
ENV PROXY_TIMEOUT "90"
5+
ENV STATIC_URL "/static"
6+
ENV STATIC_PATH "/srv/static"
7+
ENV MEDIA_PATH "/srv/media"
8+
9+
USER root
10+
RUN yum -y update \
11+
&& yum -y install nginx gettext \
12+
&& easy_install-2.7 pip && pip2 install supervisor supervisor-stdout \
13+
&& mkdir /etc/nginx/proxy.d
14+
15+
# Create a directory for config
16+
COPY nginx/nginx.conf /etc/nginx/nginx.conf
17+
COPY nginx/start-nginx.sh /usr/bin/start-nginx.sh
18+
COPY nginx/mime.types /etc/nginx/mime.types
19+
COPY supervisor.ini /etc/supervisor.ini
20+
COPY supervisor-shutdown.sh /usr/bin/supervisor-shutdown
21+
22+
# forward request and error logs to docker log collector
23+
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
24+
&& ln -sf /dev/stderr /var/log/nginx/error.log \
25+
&& chmod +x /usr/bin/start-nginx.sh \
26+
&& chmod +x /usr/bin/supervisor-shutdown
27+
28+
EXPOSE 8080
29+
30+
CMD ["supervisord", "-n", "-c", "/etc/supervisor.ini"]

nginx/mime.types

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
types {
2+
text/html html htm shtml;
3+
text/css css;
4+
text/xml xml;
5+
image/gif gif;
6+
image/jpeg jpeg jpg;
7+
application/x-javascript js;
8+
application/atom+xml atom;
9+
application/rss+xml rss;
10+
11+
text/mathml mml;
12+
text/plain txt;
13+
text/vnd.sun.j2me.app-descriptor jad;
14+
text/vnd.wap.wml wml;
15+
text/x-component htc;
16+
17+
image/png png;
18+
image/tiff tif tiff;
19+
image/vnd.wap.wbmp wbmp;
20+
image/x-icon ico;
21+
image/x-jng jng;
22+
image/x-ms-bmp bmp;
23+
image/svg+xml svg svgz;
24+
image/webp webp;
25+
26+
application/java-archive jar war ear;
27+
application/mac-binhex40 hqx;
28+
application/msword doc;
29+
application/pdf pdf;
30+
application/postscript ps eps ai;
31+
application/rtf rtf;
32+
application/vnd.ms-excel xls;
33+
application/vnd.ms-powerpoint ppt;
34+
application/vnd.wap.wmlc wmlc;
35+
application/vnd.google-earth.kml+xml kml;
36+
application/vnd.google-earth.kmz kmz;
37+
application/x-7z-compressed 7z;
38+
application/x-cocoa cco;
39+
application/x-java-archive-diff jardiff;
40+
application/x-java-jnlp-file jnlp;
41+
application/x-makeself run;
42+
application/x-perl pl pm;
43+
application/x-pilot prc pdb;
44+
application/x-rar-compressed rar;
45+
application/x-redhat-package-manager rpm;
46+
application/x-sea sea;
47+
application/x-shockwave-flash swf;
48+
application/x-stuffit sit;
49+
application/x-tcl tcl tk;
50+
application/x-x509-ca-cert der pem crt;
51+
application/x-xpinstall xpi;
52+
application/xhtml+xml xhtml;
53+
application/zip zip;
54+
55+
application/octet-stream bin exe dll;
56+
application/octet-stream deb;
57+
application/octet-stream dmg;
58+
application/octet-stream eot;
59+
application/octet-stream iso img;
60+
application/octet-stream msi msp msm;
61+
62+
audio/midi mid midi kar;
63+
audio/mpeg mp3;
64+
audio/ogg ogg;
65+
audio/x-m4a m4a;
66+
audio/x-realaudio ra;
67+
68+
video/3gpp 3gpp 3gp;
69+
video/mp4 mp4;
70+
video/mpeg mpeg mpg;
71+
video/quicktime mov;
72+
video/webm webm;
73+
video/x-flv flv;
74+
video/x-m4v m4v;
75+
video/x-mng mng;
76+
video/x-ms-asf asx asf;
77+
video/x-ms-wmv wmv;
78+
video/x-msvideo avi;
79+
}

nginx/nginx.conf

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
user nginx;
2+
worker_processes 4;
3+
pid /var/run/nginx.pid;
4+
5+
events {
6+
worker_connections 1024;
7+
}
8+
9+
http {
10+
include mime.types;
11+
12+
default_type application/octet-stream;
13+
14+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
15+
'$status $body_bytes_sent "$http_referer" '
16+
'"$http_user_agent" "$http_x_forwarded_for"';
17+
18+
access_log /var/log/nginx/access.log;
19+
error_log /var/log/nginx/error.log;
20+
21+
sendfile on;
22+
tcp_nopush on;
23+
24+
keepalive_timeout 65;
25+
tcp_nodelay on;
26+
27+
gzip on;
28+
29+
# Proxy all requests to the destination
30+
server {
31+
listen 8080 default_server;
32+
# Proxy configuration
33+
proxy_redirect off;
34+
proxy_set_header Host $host;
35+
proxy_set_header X-Real-IP $remote_addr;
36+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
37+
client_max_body_size 3g;
38+
client_body_buffer_size 128k;
39+
proxy_connect_timeout 90;
40+
proxy_buffers 32 4k;
41+
include nginx_params;
42+
43+
location / {
44+
proxy_pass http://$wsgi_host:$wsgi_port;
45+
}
46+
47+
location /static {
48+
alias $static_location;
49+
}
50+
51+
location /media {
52+
alias $media_location;
53+
}
54+
55+
include proxy.d/*.conf;
56+
}
57+
58+
# Include other config files
59+
include conf.d/*.conf;
60+
}

nginx/start-nginx.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
cat > /etc/nginx/nginx_params <<-EOF
4+
proxy_send_timeout $PROXY_TIMEOUT;
5+
proxy_read_timeout $PROXY_TIMEOUT;
6+
set \$wsgi_host '127.0.0.1';
7+
set \$wsgi_port $APP_PORT;
8+
set \$static_location $STATIC_PATH;
9+
set \$media_location $MEDIA_PATH;
10+
EOF
11+
12+
nginx -g 'daemon off;'

supervisor-shutdown.sh

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#!/usr/bin/python
2+
import sys
3+
import os
4+
import logging
5+
import subprocess
6+
import time
7+
8+
from supervisor.childutils import listener
9+
10+
def main(args):
11+
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, format='%(asctime)s %(levelname)s %(filename)s: %(message)s')
12+
logger = logging.getLogger("supervisord-watchdog")
13+
debug_mode = True if 'DEBUG' in os.environ else False
14+
15+
while True:
16+
logger.info("Listening for events...")
17+
headers, body = listener.wait(sys.stdin, sys.stdout)
18+
body = dict([pair.split(":") for pair in body.split(" ")])
19+
20+
logger.debug("Headers: %r", repr(headers))
21+
logger.debug("Body: %r", repr(body))
22+
logger.debug("Args: %r", repr(args))
23+
24+
if debug_mode: continue
25+
26+
try:
27+
if headers["eventname"] == "PROCESS_STATE_FATAL":
28+
logger.info("Process entered FATAL state...")
29+
if not args or body["processname"] in args:
30+
logger.error("Killing off supervisord instance ...")
31+
res = subprocess.call(["/bin/kill", "-15", "1"], stdout=sys.stderr)
32+
logger.info("Sent TERM signal to init process")
33+
time.sleep( 5 )
34+
logger.critical("Why am I still alive? Send KILL to all processes...")
35+
res = subprocess.call(["/bin/kill", "-9", "-1"], stdout=sys.stderr)
36+
except Exception as e:
37+
logger.critical("Unexpected Exception: %s", str(e))
38+
listener.fail(sys.stdout)
39+
exit(1)
40+
else:
41+
listener.ok(sys.stdout)
42+
43+
if __name__ == '__main__':
44+
main(sys.argv[1:])

supervisor.ini

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[supervisord]
2+
nodaemon = true
3+
4+
[program:wsgi]
5+
user = app
6+
command = /home/app/start-gunicorn.sh
7+
environment=PATH="/srv/virtenv/bin:%(ENV_PATH)s"
8+
autorestart = false
9+
startretries=0
10+
stdout_events_enabled = true
11+
stderr_events_enabled = true
12+
13+
[program:nginx]
14+
command = /usr/bin/start-nginx.sh
15+
autorestart = false
16+
startretries=0
17+
stdout_events_enabled = true
18+
stderr_events_enabled = true
19+
20+
[eventlistener:stdout]
21+
command = supervisor_stdout
22+
buffer_size = 100
23+
events = PROCESS_LOG
24+
result_handler = supervisor_stdout:event_handler
25+
26+
[eventlistener:fatal]
27+
command = "supervisor-shutdown"
28+
events = PROCESS_STATE_FATAL
29+

0 commit comments

Comments
 (0)