Welcome! Log In Create A New Profile

Advanced

EGroupWare nginx config

Mark Alan
January 13, 2012 02:52PM
In case anyone needs to setup EGroupWare http://www.egroupware.org/
over Debian 6 / Ubuntu 11.10 and Nginx 1.1.12, here is the config file
that we used:

# nginx - /etc/nginx/sites-available/egw
#
server {
listen 80;
server_name egw.localhost;
root /usr/share/egroupware;
index index.php;
client_max_body_size 8M;
rewrite ^/egroupware/(.*)$ /$1 last;
try_files $uri $uri/ /index.php?$args;
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/tmp/php-fpm.socket;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name; }
}


M.

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

EGroupWare nginx config

Mark Alan January 13, 2012 02:52PM

Re: EGroupWare nginx config

freerk55 June 10, 2013 04:51PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 275
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready