aboutsummaryrefslogtreecommitdiffstats
path: root/roles/nginx/HOWTO_new_site.txt
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-04-09 23:16:19 -0400
committerbnewbold <bnewbold@robocracy.org>2016-04-09 23:16:19 -0400
commita2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e (patch)
treee057e3b252d78fa0af35eaf63a6f0875bf88bd0b /roles/nginx/HOWTO_new_site.txt
parent68f2a39b1494c4959d37d54f1733d169183bab38 (diff)
downloadinfra-a2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e.tar.gz
infra-a2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e.zip
nginx: first pass of live, workable nginx role
Diffstat (limited to 'roles/nginx/HOWTO_new_site.txt')
-rw-r--r--roles/nginx/HOWTO_new_site.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/roles/nginx/HOWTO_new_site.txt b/roles/nginx/HOWTO_new_site.txt
new file mode 100644
index 0000000..ef9ee37
--- /dev/null
+++ b/roles/nginx/HOWTO_new_site.txt
@@ -0,0 +1,19 @@
+
+For a static website:
+
+ server {
+ listen 80;
+ listen [::]:80;
+ server_name <example.com>;
+
+ root /srv/http/<example.com>/www;
+ index index.html;
+
+ location / {
+ try_files $uri $uri/ =404;
+ }
+ }
+
+For a reverse proxied website:
+
+ XXX: TODO