This is our config, works really good.

server {
    listen      80;
    server_name _;
    return 301 https://$host$request_uri;
}
server {
    listen       443;
    server_name  _;

    ssl                  on;
    ssl_certificate      /etc/pki/tls/certs/xxxx.pem;
    ssl_certificate_key  /etc/pki/tls/private/xxxx.key;

    ssl_session_timeout  5m;

    ssl_protocols TLSv1;
    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
    ssl_prefer_server_ciphers   on;

    location / {
        proxy_pass  http://127.0.0.1:9000;
    }
}


On Tuesday, November 18, 2014 11:41:56 PM UTC+1, Jean-Luc Bassereau wrote:
>
> Hello,
>
> Do you mean you need something like a reverse proxy in front of Graylog2 ?
> If it's the case, you'll find the required documentation here :
> http://nginx.com/resources/admin-guide/reverse-proxy/
>
> Cheers
>
> 2014-11-17 18:46 GMT+01:00 bbcorp <[email protected] <javascript:>>:
>
>> Hey everybody,
>> I started using graylog2 about weeks ago. I am using the graylog 
>> webinterface but now I'd like to have a nginx frontend, is it possible and 
>> how?
>> Can I use unicorn ? I'm really a newbie in graylog and unicorn.
>> If there is already a topic about this my bad I didn't find with the 
>> search.
>>
>> Regards,
>> bbcorp
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "graylog2" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>  

-- 
You received this message because you are subscribed to the Google Groups 
"graylog2" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to