Skip to content

Instantly share code, notes, and snippets.

@joesoeph
Created September 5, 2020 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joesoeph/6cbae13e269f6bc3a61c0a1067418324 to your computer and use it in GitHub Desktop.
Save joesoeph/6cbae13e269f6bc3a61c0a1067418324 to your computer and use it in GitHub Desktop.
admin.apiato.test.conf
define ROOT "D:/laragon/www/apiato/public/"
define SITE "admin.apiato.test"
<VirtualHost *:80>
DocumentRoot "${ROOT}"
ServerName ${SITE}
ServerAlias *.${SITE}
<Directory "${ROOT}">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:443>
DocumentRoot "${ROOT}"
ServerName ${SITE}
ServerAlias *.${SITE}
<Directory "${ROOT}">
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile D:/laragon/etc/ssl/laragon.crt
SSLCertificateKeyFile D:/laragon/etc/ssl/laragon.key
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment