summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormike castleman <m@mlcastle.net>2008-11-19 01:16:19 -0500
committermike castleman <m@mlcastle.net>2008-11-19 01:16:19 -0500
commit67a77f6306e15f7f7cf2d1e2fc5cc258f9398cef (patch)
tree621be3adf73d5b7bba75ee4327bbf1df7cc62d4e /doc
parent489006a448bff91a36378bf1917e630994a8fe87 (diff)
explain how it is that zimmermann speaks https
Diffstat (limited to 'doc')
-rw-r--r--doc/zimmerman/changelog7
-rw-r--r--doc/zimmerman/https-proxy14
2 files changed, 21 insertions, 0 deletions
diff --git a/doc/zimmerman/changelog b/doc/zimmerman/changelog
index a92557d..46160a2 100644
--- a/doc/zimmerman/changelog
+++ b/doc/zimmerman/changelog
@@ -7,6 +7,13 @@
* changes to this system (first command at top, last at bottom) *
******************************************************************************
+2008-11-19 - mlc
+ * aptitude install nginx
+ * get rid of /etc/nginx/sites-enabled/default
+ * create /etc/nginx/sites-available/https-proxy and make a symlink
+ to it in the sites-enabled directory
+ * invoke-rc.d nginx start
+
2008-11-17 - micah
* verified the SHA256 values for the key material
* /usr/lib/sks/sks_build.sh (chose option #2: normalbuild)
diff --git a/doc/zimmerman/https-proxy b/doc/zimmerman/https-proxy
new file mode 100644
index 0000000..c4521a7
--- /dev/null
+++ b/doc/zimmerman/https-proxy
@@ -0,0 +1,14 @@
+server {
+ listen 443;
+ server_name zimmermann.mayfirst.org;
+ ssl on;
+ ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
+ ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
+ ssl_ciphers HIGH:MEDIUM:!ADH;
+
+ access_log off;
+
+ location / {
+ proxy_pass http://localhost:11371/;
+ }
+}