Hi Bertrand,
I've already configured nginx in front of graylog-webinterface.
If you want, here is my vhost file as example :
server {
listen 80;
server_name log.toto.com;
# Redirect to https
return 301 https://$server_name$request_uri;
}
#
# HTTPS server
#
server {
listen 443;
server_name log.toto.com;
ssl on;
ssl_certificate /etc/nginx/ssl/any.toto.com.pem;
ssl_certificate_key /etc/nginx/ssl/toto.com.key;
ssl_session_timeout 5m;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://localhost:9000;
}
}
Regards,
Matt
On Mon, Nov 17, 2014 at 12:46 PM, bbcorp <[email protected]> wrote:
> 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].
> 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.