aboutsummaryrefslogtreecommitdiffstats
path: root/adze_extras/nginx-sites/bommom.com
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2017-08-05 13:07:50 -0700
committerBryan Newbold <bnewbold@archive.org>2017-08-05 13:07:50 -0700
commit6b83183a205cb1e90c690c7e7f71c447cfae9a32 (patch)
tree870ae93beb63ce3d3b338346cff3a8f2fb35bcd1 /adze_extras/nginx-sites/bommom.com
parent8974dd5f9351c666a1144b0584189d3a07c62351 (diff)
downloadinfra-6b83183a205cb1e90c690c7e7f71c447cfae9a32.tar.gz
infra-6b83183a205cb1e90c690c7e7f71c447cfae9a32.zip
backup adze nginx config
Diffstat (limited to 'adze_extras/nginx-sites/bommom.com')
-rw-r--r--adze_extras/nginx-sites/bommom.com23
1 files changed, 23 insertions, 0 deletions
diff --git a/adze_extras/nginx-sites/bommom.com b/adze_extras/nginx-sites/bommom.com
new file mode 100644
index 0000000..16a77a3
--- /dev/null
+++ b/adze_extras/nginx-sites/bommom.com
@@ -0,0 +1,23 @@
+
+upstream bommom-bommom {
+ server 127.0.0.1:5015;
+}
+
+server {
+ listen 80;
+ listen [::]:80;
+ server_name bommom.com www.bommom.com bommom.memeschemes.com;
+
+ access_log /var/log/nginx/access.log;
+ error_log /var/log/nginx/error.log;
+
+ location / {
+ root /srv/http/default/www/;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header Host $http_host;
+ proxy_redirect off;
+ proxy_pass http://bommom-bommom;
+ }
+}
+