Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # /etc/hosts
- http://hostsfile.mine.nu/get.asp?format=srv&zipped=yes
- # OSX Hint - Loopback must be enabled, does not survive a system restart :-(
- ifconfig lo0 alias 127.0.0.3
- # Apache 2.4
- <VirtualHost 127.0.0.3:80>
- ServerAdmin [email protected]
- DocumentRoot "/_/var/www-127.0.0.3"
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- </Directory>
- <Directory /_/var/www-127.0.0.3/>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Require all granted
- allow from all
- </Directory>
- RewriteEngine On
- RewriteCond %{REQUEST_URI} ^/RealMedia/ads/
- RewriteRule ^/RealMedia/ads/(.*) /ads.gif [R]
- RewriteCond %{REQUEST_URI} ^/banners/
- RewriteRule ^/banners/(.*) /index.html [R]
- ErrorLog "/private/var/log/apache2/127_0_0_3_error_log"
- CustomLog "/private/var/log/apache2/127_0_0_3_access_log" common
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel crit
- ErrorDocument 404 /error_404.html
- </VirtualHost>
- # /var/www-127.0.0.3/error_404.html
- <html><body><div style="color: lightgray; font-size: 10px;">Werbung</div>
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment