aboutsummaryrefslogtreecommitdiff
path: root/wqflask/other_config/nginx_conf/gn2.conf
diff options
context:
space:
mode:
authorZachary Sloan2014-12-01 21:31:13 +0000
committerZachary Sloan2014-12-01 21:31:13 +0000
commitc937684370f81b6ca96a57d39fb6a85d04c8bb70 (patch)
tree4f06de162afcb7c80578a0449bcc7a121353d220 /wqflask/other_config/nginx_conf/gn2.conf
parentfb5a89a245c9e6ebedb6608b6b6ec5bcf89fd785 (diff)
parente03a5919a2c8755fd4efd20e78ca79381dec3075 (diff)
downloadgenenetwork2-c937684370f81b6ca96a57d39fb6a85d04c8bb70.tar.gz
Merge /home/lei/gene
Diffstat (limited to 'wqflask/other_config/nginx_conf/gn2.conf')
-rwxr-xr-xwqflask/other_config/nginx_conf/gn2.conf41
1 files changed, 41 insertions, 0 deletions
diff --git a/wqflask/other_config/nginx_conf/gn2.conf b/wqflask/other_config/nginx_conf/gn2.conf
new file mode 100755
index 00000000..a51b4113
--- /dev/null
+++ b/wqflask/other_config/nginx_conf/gn2.conf
@@ -0,0 +1,41 @@
+server {
+ # Modeled after http://flask.pocoo.org/docs/deploying/wsgi-standalone/
+ listen 80;
+
+ server_name gn2.genenetwork.org;
+
+ access_log /var/log/nginx/access.log;
+ error_log /var/log/nginx/error.log;
+
+ location ^~ /css/ {
+ root /gene/wqflask/wqflask/static/;
+ }
+
+ location ^~ /javascript/ {
+ root /gene/wqflask/wqflask/static/;
+ }
+
+# location ^~ /image/ {
+# root /gene/wqflask/wqflask/static/;
+# }
+
+ location ^~ /images/ {
+ root /gene/wqflask/wqflask/static/;
+ }
+
+ ### New - added by Sam
+ #location ^~ /static/ {
+ # root /gene/wqflask/wqflask/static/;
+ #}
+
+ location / {
+ proxy_pass http://127.0.0.1:5000/;
+ proxy_redirect off;
+
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+
+ proxy_read_timeout 40m;
+ }
+}