Skip to content

Instantly share code, notes, and snippets.

@Jatapiaro
Created December 18, 2019 05:30
Show Gist options
  • Save Jatapiaro/eb3720141402b0f33c70062ceaf8cf22 to your computer and use it in GitHub Desktop.
Save Jatapiaro/eb3720141402b0f33c70062ceaf8cf22 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>¡Super!</title>
</head>
<body>
<h1>Your example domain is ready</h1>
</body>
</html>
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName my.domain.com
ServerAlias my.domain.com
DocumentRoot /var/www/my.domain.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory "/var/www/my.domain.com">
Options Includes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment