From 4fabb334dc52d122f31af9fa0bd916ae1b2c34f0 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 4 Jun 2020 12:26:39 +0200 Subject: [PATCH] Remove obsolete scripts and config --- configs/tonyg/nginx.locals3proxy.conf | 30 --------------------------- configs/tonyg/run-s3-proxy.sh | 2 -- 2 files changed, 32 deletions(-) delete mode 100644 configs/tonyg/nginx.locals3proxy.conf delete mode 100755 configs/tonyg/run-s3-proxy.sh diff --git a/configs/tonyg/nginx.locals3proxy.conf b/configs/tonyg/nginx.locals3proxy.conf deleted file mode 100644 index ba28f8b..0000000 --- a/configs/tonyg/nginx.locals3proxy.conf +++ /dev/null @@ -1,30 +0,0 @@ -# As a regular user, run -# -# nginx -p . -c nginx.locals3proxy.conf - -daemon off; -pid ./nginx.pid; -error_log locals3proxy-error.log; - -events { - worker_connections 768; -} - -http { - server { - listen 8446 default_server ssl; - - access_log locals3proxy-access.log; - error_log locals3proxy-error.log; - - ssl_certificate /home/tonyg/src/racket-pkg-website/server-cert.pem; - ssl_certificate_key /home/tonyg/src/racket-pkg-website/private-key.pem; - ssl_protocols TLSv1 TLSv1.1 TLSv1.2; - ssl_ciphers HIGH:!aNULL:!MD5; - - location / { - proxy_pass http://pkgs.leastfixedpoint.com.s3-website-us-east-1.amazonaws.com/; - proxy_http_version 1.1; - } - } -} diff --git a/configs/tonyg/run-s3-proxy.sh b/configs/tonyg/run-s3-proxy.sh deleted file mode 100755 index 3535e81..0000000 --- a/configs/tonyg/run-s3-proxy.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec nginx -p . -c nginx.locals3proxy.conf