Skip to content

Instantly share code, notes, and snippets.

@yukikaoru
Last active October 12, 2018 04:18
Show Gist options
  • Save yukikaoru/f2cc2505474b46d916e9f077c8f053b0 to your computer and use it in GitHub Desktop.
Save yukikaoru/f2cc2505474b46d916e9f077c8f053b0 to your computer and use it in GitHub Desktop.
VirtualHost template
<VirtualHost *:80>
ServerName any #12.34.56.78 #anyが使えるらしいがマニュアルで見つからない
DocumentRoot /path/to/root/
CustomLog /var/log/httpd/vhost-access_log combined
ErrorLog /var/log/httpd/vhost-error_log
<Directory /path/to/root/>
Require all granted
Options FollowSymlinks
AllowOverride all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment