Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pabs1983

Pages: [1]
1
Installation / HTTP to HTTPS Redirection using NGINX + VARNISH + APACHE
« on: December 05, 2018, 11:25:55 AM »
Can anyone provide a step by step for configuring HTTP to HTTPS redirection for all sites using NGINX + VARNISH + APACHE.

If you go to a domain using HTTPS directly (by typing https://www.domain.com), the web page shows fine. If you go to the same domain using HTTP directly (by typing http://www.domain.com), you get a 404 error. Previously we were only using Apache and the .htaccess file was happily redirecting. Since setting up NGINX and VARNISH, the function has stopped.

Any advice would be much appreciated.

2
Information / Re: 0.9.8.741 - attention
« on: December 02, 2018, 01:00:55 PM »
after running through the steps as prompted on the admin panel, my system is now allowing me back in correctly.

3
Information / Re: 0.9.8.741 - attention
« on: December 02, 2018, 12:48:22 PM »
Got the same appear for me today too. Seems like a major update has been released to the portal and it requires some back end configurations to fix.

I went to go into Packages on the admin portal (thinking that there was maybe a new end user feature that needs adding) and was prompted to install PHP-FPM and rebuild webservers. I'm waiting for this to complete, to see if it fixes the issue.

4
SSL / Wildcard SSL Instructions
« on: January 11, 2018, 02:18:14 PM »
Can anyone provide details and steps for adding an existing Wildcard SSL certificate to CWP.

Pabs

5
Apache / setting custom virtual host settings
« on: January 10, 2018, 11:26:46 AM »
I'm wondering if someone can provide some guidance on how to potentially go about a more complex deployment.

We currently have a customer that runs their own wordpress website(s) on an internal Linux server. We are in the process of moving them into our infrastructure and are looking at CWP (along with a number of other platforms).

Their current .conf setup for virtual hosts is similar to the following (modified to protect customer identity and to simplify).

Code: [Select]
<VirtualHost *:80>

    ServerName www.domain.com
    ServerAlias domain.com
    DocumentRoot /var/www/wwwroot/domain.com/group
    <Directory /var/www/wwwroot/domain.com>
        Options Indexes followSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    Alias /department1 /var/www/wwwroot/domain.com/dep1
    <Directory /var/www/wwwroot/domain.com/dep1>
        Order allow,deny
        allow from all
    </Directory>

    Alias /department2 /var/www/wwwroot/domain.com/dep2
    <Directory /var/www/wwwroot/domain.com/dep2>
        Order allow,deny
        allow from all
    </Directory>

</VirtualHost>

Each department is a seperate instance of wordpress, which they want to replicate in our environment. They have had no issues with the setup in the past, other than it running in a dedicated apache instance, and not through a control panel of any sort.

Any advice on how to apply the config to CWP.

Thanks
Pabs

Pages: [1]