Hi,

For us Graylog v2.0 (since Beta) is working like a charm behind a Apache 
ReverseProxy with SSL Offloading - no graylog server config modification 
needed for the rest api 

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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/add8eec5-65a9-4637-9a46-9b58589e3ee4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to