Monthly Archives: October 2022

Using Multiple SSL Certificates in Apache with One IP Address

Next, in the NameVirtualHost directive list your server’s public IP address, *:443, or other port you’re using for SSL (see example below). Then point the SSLCertificateFile, SSLCertificateKeyFile, and SSLCertificateChainFile to the locations of the certificate files for each website as … Continue reading

Posted in godday, SSL | Comments Off on Using Multiple SSL Certificates in Apache with One IP Address

How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address

Make sure the mod_ssl security module is installed and enabled so the Apache web server can use the OpenSSL library and toolkit: yum install mod_ssl openssl Execute the following commands: mkdir -p /etc/httpd/ssl/ mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf.bak cd /etc/httpd/ssl/ Generate SSL … Continue reading

Posted in centOS, godday, SSL | Comments Off on How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address

Centos 7 redirect http to https

<VirtualHost *:80> ServerName example.com Redirect “/” “https://example.com/” </VirtualHost>

Posted in apache, centOS | Comments Off on Centos 7 redirect http to https

Track Email Messages With Office 365 Mail Trace

On-prem Exchange did not allow message tracking via the Exchange admin center. In Office 365, EAC enables message tracing and offers quite a comfortable experience. Although usually I prefer administrating Exchange Online with PowerShell, I must say that in this case, EAC seems to … Continue reading

Posted in 365 | Comments Off on Track Email Messages With Office 365 Mail Trace

Installing PHP on Windows 10 and IIS

1. Configure IIS Control Panel | Programs | Turn Windows features on or off Check Internet Information ServicesCheck IIS | World Wide Web Services | Application Development Features | CGIOK 2. Install the NTS (non-thread safe) 64-bit version of PHP … Continue reading

Posted in PHP | Comments Off on Installing PHP on Windows 10 and IIS