Difference between revisions of "Proxy"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with "Code for the proxy is located in $LJHOME/src/proxy. To enable the proxy, set these in your config: $PROXY_SALT_FILE = "$HOME/ext/local/etc/proxy-salt"; $PROXY_URL = "https:/...")
 
Line 11: Line 11:
  
  
<source>
+
<source lang="text">
 
     server {
 
     server {
 
         listen      443 ssl;
 
         listen      443 ssl;

Revision as of 19:32, 14 May 2015

Code for the proxy is located in $LJHOME/src/proxy.

To enable the proxy, set these in your config:

$PROXY_SALT_FILE = "$HOME/ext/local/etc/proxy-salt"; $PROXY_URL = "https://proxy.hack.dw";

You'll need to create the `proxy-salt` file. Contents of `proxy-salt` are just a string, preferrably long with randomly generated characters.

You'll also want something in front of the proxy to handle https negotiation. I recommend nginx. Sample config that will work:


    server {
        listen       443 ssl;
        server_name  proxy.hack.dw;
 
        sendfile     off;
 
        location / {
            proxy_pass http://127.0.0.1:6250;
            proxy_redirect off;
        }
    }


(for dev) Make sure you've also got an /etc/hosts entry for `proxy.hack.dw`.