PHP Web Server
Some common ones:
# System, IDE and tmp files | |
.DS_Store* | |
ehthumbs.db | |
Icon? | |
Thumbs.db | |
# Wordpress Files | |
.htaccess | |
wp-*.php |
module Jekyll | |
# Sass plugin to convert .scss to .css | |
# | |
# Note: This is configured to use the new css like syntax available in sass. | |
require 'sass' | |
class SassConverter < Converter | |
safe true | |
priority :low | |
def matches(ext) |
<VirtualHost IPADDRESS:PORT> | |
ServerAdmin [email protected] | |
ServerName domain.com | |
ServerAlias www.domain.com | |
DocumentRoot /var/www/html | |
<Directory "/var/www/html"> | |
Options FollowSymLinks | |
AllowOverride All | |
Order allow,deny |