File: //etc/apache2/sites-available/app.vaspayment.com-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@app.vaspayment.com
ServerName app.vaspayment.com
DocumentRoot /var/www/app.vaspayment.com/public
<Directory /var/www/app.vaspayment.com/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/app.vaspayment.com_error.log
CustomLog ${APACHE_LOG_DIR}/app.vaspayment.com_access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/app.vaspayment.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/app.vaspayment.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>