aboutsummaryrefslogtreecommitdiffstats
path: root/rust
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-05-31 14:22:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-05-31 14:22:39 -0700
commitf0c01f9739a0c237c193dc9020273a47c19bb621 (patch)
treebf7ccabca043a036044387fdff65f930a37d62d5 /rust
parentbf085b31ac3790ce24feb07dfed6b0e7574ed183 (diff)
downloadfatcat-f0c01f9739a0c237c193dc9020273a47c19bb621.tar.gz
fatcat-f0c01f9739a0c237c193dc9020273a47c19bb621.zip
start tracking deployment examples
Diffstat (limited to 'rust')
-rw-r--r--rust/nginx-example39
1 files changed, 0 insertions, 39 deletions
diff --git a/rust/nginx-example b/rust/nginx-example
deleted file mode 100644
index 13c1da99..00000000
--- a/rust/nginx-example
+++ /dev/null
@@ -1,39 +0,0 @@
-
-upstream fatcatd {
- server localhost:9411;
-}
-
-server {
- listen 80;
- listen [::]:80;
- listen 443 ssl spdy;
- listen [::]:443 ssl spdy;
- server_name api.fatcat.wiki;
-
- ssl_certificate /etc/letsencrypt/live/fatcat.wiki/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/fatcat.wiki/privkey.pem;
-
- #add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'";
- add_header X-Frame-Options "SAMEORIGIN"; # 'always' if nginx > 1.7.5
- add_header X-Content-Type-Options "nosniff"; # 'always' if nginx > 1.7.5
- add_header X-Xss-Protection "1";
- # Enable STS with one year period (breaks http; optional)
- #add_header Strict-Transport-Security "max-age=31557600; includeSubDomains";
-
- access_log /var/log/nginx/access.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://fatcatd;
- }
-
- # Let's Encrypt SSL Certs
- location /.well-known/acme-challenge/ {
- root /var/www/letsencrypt;
- autoindex off;
- }
-}