File: //etc/apache2/sites-enabled/sectest.concertium.com-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin sgchowdhury@concertium.com
DocumentRoot /var/www/sectest.concertium.com/public_html
ServerName sectest.concertium.com
<Directory /var/www/sectest.concertium.com/public_html/>
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/var/run/php/sectest.concertium.com.sock|fcgi://localhost/"
</FilesMatch>
ErrorLog ${APACHE_LOG_DIR}/sectest.concertium.com-error.log
CustomLog ${APACHE_LOG_DIR}/sectest.concertium.com-access.log combined
SSLCertificateFile /etc/letsencrypt/live/sectest.concertium.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/sectest.concertium.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>