summaryrefslogtreecommitdiff
path: root/susie.sup.land
diff options
context:
space:
mode:
Diffstat (limited to 'susie.sup.land')
-rw-r--r--susie.sup.land19
1 files changed, 19 insertions, 0 deletions
diff --git a/susie.sup.land b/susie.sup.land
new file mode 100644
index 0000000..3914932
--- /dev/null
+++ b/susie.sup.land
@@ -0,0 +1,19 @@
+
+upstream susie_cms {
+ server 127.0.0.1:6516;
+}
+
+server {
+ listen 8070;
+ server_name susie.sup.land studiosusie.com www.studiosusie.com;
+ client_max_body_size 50M;
+
+ location / {
+ 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_set_header X-NginX-Proxy true;
+ proxy_pass http://susie_cms;
+ proxy_redirect off;
+ }
+}