/
etc
/
apache2
/
sites-available
/
Upload File
HOME
<IfModule mod_ssl.c> <VirtualHost *:443> ServerName plugin-techloyce.com ServerAlias www.plugin-techloyce.com ServerAdmin webmaster@localhost # Serve from main site root DocumentRoot /var/www/html/plugin-techloyce # Error & access logs ErrorLog ${APACHE_LOG_DIR}/plugin-techloyce.com_error.log CustomLog ${APACHE_LOG_DIR}/plugin-techloyce.com_access.log combined # Directory settings <Directory /var/www/html/plugin-techloyce> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> # Alias for /echosign to serve directly Alias /echosign /var/www/html/plugin-techloyce/echosign <Directory /var/www/html/plugin-techloyce/echosign> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> # PHP-FPM handler (update if using PHP 8.x) <FilesMatch \.php$> SetHandler "proxy:unix:/var/run/php/php7.4-fpm.sock|fcgi://localhost/" </FilesMatch> # Enable rewrite (Laravel or other) RewriteEngine on # SSL Certificate Include /etc/letsencrypt/options-ssl-apache.conf SSLCertificateFile /etc/letsencrypt/live/plugin-techloyce.com-0002/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/plugin-techloyce.com-0002/privkey.pem </VirtualHost> </IfModule>