Demo Discussion
Forum Config Examples Contributions Vulnerabilities
  Configuration examples for ELOG  Not logged in ELOG logo
Message ID: 19     Entry time: Sat Nov 16 03:24:38 2019
Author: Carl Makin 
Author Email: carl@stagecraft.cx 
Category: Other 
Configuration Name: nginx proxy configuration 
Last Revision: Sat Nov 16 03:27:21 2019 by Carl Makin 
To put nginx as a proxy in front of elog you need to use the following proxy statements in the nginx config;

This will let you use <site>/elog/ as your URL.

    location /elog/ {
        proxy_pass http://127.0.0.1:8080/;
        proxy_pass_header Set-Cookie;
        proxy_redirect off;
        proxy_set_header Host $host;
    }
ELOG V3.1.5-fe60aaf