after updating apache 2.4 with https support, we received this message on 
graylog web log in. The apache virtual host config file was made using this 
sample 
http://docs.graylog.org/en/2.1/pages/configuration/web_interface.html#apache-httpd-2-x

Here is an apache config

<VirtualHost *:80>
>         ServerAdmin [email protected]
>         ServerName graylog.site.org
>     RewriteEngine On
>     RewriteCond %{HTTPS} off
>     RewriteRule (.*) https://%{HTTP_HOST}:443%{REQUEST_URI}
>         
>     <Proxy *>
>                 Order deny,allow
>                 Deny from all
>                 allow from 192.168.0.0/24
>         </Proxy>
>
>
> </VirtualHost>
>
> <VirtualHost *:443>
>     ServerAdmin [email protected]
>     ServerName graylog.site.org
>     ProxyRequests Off
>     SSLEngine on
>     SSLCertificateFile /path/to/ssl.crt
>     SSLCertificateChainFile /path/to/ssl.pem
>     SSLCertificateKeyFile /path/to/ssl.key
>
>     <Proxy *>
>         Order deny,allow
>                 Deny from all
>                 allow from 192.168.0.0/24
>     </Proxy>
>
>     <Location />
>         RequestHeader set X-Graylog-Server-URL 
> "https://graylog.site.org/api/";
>         ProxyPass http://127.0.0.1:9000/
>         ProxyPassReverse http://127.0.0.1:9000/
>         </Location>
> </VirtualHost>    
>

    Graylog Version: 2.1.2-1
    Elasticsearch Version: 2.1.1
    MongoDB Version: 2.6.11
    Operating System: Ubuntu 14.04
    Browser version: Firefox 49.0.2


-- 
You received this message because you are subscribed to the Google Groups 
"Graylog Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/0900cff3-9026-4326-8e7e-437be6000cf1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to