4 / 4
Dec 2024

I git clone the latest repo and composer install and npm install and grunt. After logged in, it showes:

I use Nginx as web server. Are there some special configs for eTemplates loading? My Nginx config is as below:

server
{
        listen 443 ssl;
        server_name egroupware.mycompany.com;
        ssl_certificate     /etc/ssl/fullchain.pem;
        ssl_certificate_key /etc/ssl/privkey.pem;
        root /var/www/html/egroupware;
        index index.php;
        client_max_body_size 512M;
        rewrite ^/egroupware/(.*)$ /$1 last;
        try_files $uri $uri/ /index.php?$args;
        location ~ ^(?<script>.+\.php)
        {
                include /etc/nginx/fastcgi_params;
                fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$script;
                fastcgi_param SCRIPT_NAME $script;
        }
}
  • created

    Dec '24
  • last reply

    Dec '24
  • 3

    replies

  • 163

    views

  • 2

    users

  • 3

    links

You Nginx vhost is insufficient, it requires the URL to end in .php!

Why are you choosing this un-support installation method?

Please do yourself a favor and use our Linux packages installing EGroupware via Docker, as described in our docu: https://github.com/EGroupware/egroupware/wiki/Installation-using-egroupware-docker-RPM-DEB-package

If you really cant use our Linux Packages, the next best thing is to do an installation via docker-compose: https://github.com/EGroupware/egroupware/blob/master/doc/docker/README.md1

Ralf

@RalfBecker Thank you very much! I’m in a limited host environment, I cannot use docker. Would you pls help me improve the nginx config a little?