1

Topic: HOWTO needed to correctly add a PHP/Joomla website

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.7
- Linux/BSD distribution name and version: Ubuntu 16.04.4 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====
Hi,
I have been tasked to add a Joomla/PHP website to our running iRedMail server. The server has more than enough horsepower to do this ... dual E5-2680v4 processors and 64GB of RAM.
Can someone provide me with the changes that must be done to the configuration to make this happen.
I am a wiz with Apache but quite the newbie with Nginx.
Thanks for the help.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: HOWTO needed to correctly add a PHP/Joomla website

It's better check Joomla document to know how to deploy it with Nginx. For example:
https://docs.joomla.org/Nginx

Note: You should have Nginx and PHP working out of box after iRedMail installation, just add required Nginx config for Joomla (and setup Joomla itself).

3

Re: HOWTO needed to correctly add a PHP/Joomla website

Hi I have same problem this is what i have done:

Created conf file in:

/etc/nginx/sites-available/joomla.conf

and put this in int:

# HTTPS
server {
    listen 443;
    server_name mydomain.hr www.mydomain.hr;

    root /var/www/http/joomla;
    index index.php index.html;

}


after that :

sudo ln -s /etc/nginx/sites-available/joomla /etc/nginx/sites-enabled/

and copied all installation files in:

/var/www/html/joomla/

At last i have restarted ngix but instead of joomla instalation on webrowser I've got roundcube login page.

Can you please explain whta I am missing.

Best regards.