Re: Zope oder BlueBream mit Nginx betreiben
Vladislav Vorobiev <[email protected]>
| Newsgroups | gmane.comp.web.zope.german |
|---|---|
| Message-ID | <[email protected]> |
> Hallo,
>
> an alle die Nginx benutzen. Wie bindet Ihr Zope oder Bluebream an Nginx an?
>
> Per FastCGI mit welchen Vor- und Nachteilen?
>
> Mit dem Nginx WSGI Modul mit welchen Vor- oder Nachteilen?
>
> Mit dem Nginx uWSGI Modul mit welchen Vor- oder Nachteilen?
>
> Andere Möglichkeiten mit welchen Vor- oder Nachteilen?
>
> Kay
Ich leite ganz klassisch per proxy_pass weiter.
location / {
client_max_body_size 50m;
proxy_set_header REMOTE_ADDR $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass
http://localhost:10000/VirtualHostBase/http/domain.de:80/PFAD_ZU_SEITE/VirtualHostRoot/;
}
Normalleerweise läuft ein Varnish als Polster noch dazwischen.
Gruß
Vlad
--
Best Regards
Vlad Vorobiev
_______________________________________________
zope mailing list
[email protected]
https://mail.dzug.org/mailman/listinfo/zope