Hi,

For us Graylog v2.0 (since Beta) is working like a charm behind a Apache 
ReverseProxy with SSL Offloading

Our config looks like this, maybe this helps someone:
<VirtualHost *:443>
  ServerName graylogserver.example.com


  SSLEngine on
  SSLProtocol all -SSLv2 -SSLv3
  SSLCertificateFile /etc/ssl/certs/graylog.crt
  SSLCertificateKeyFile /etc/ssl/certs/graylog.key

  KeepAliveTimeout 900

  RewriteEngine On

  ## Graylog Dashboard
  RewriteCond %{REQUEST_URI} !^/api
  RewriteRule      ^/(.*) http://localhost:9000/$1 [P,L]

  ## Graylog Api - also needed for the dashboard
  RequestHeader    set X-Graylog-Server-URL 
"https://graylogserver.example.com/api";
  RewriteCond      %{REQUEST_URI} ^/api
  RewriteRule      ^/(api\/)(.*)  http://127.0.0.1:12900/$2 [P,L]

  <Location />
      Order allow,deny
      Allow from all
  </Location>

</VirtualHost>

Regards
Micha

-- 
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 graylog2+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/c5a2838a-8ed8-4524-b4bb-4bb2019d7d2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to