Skip to content

Instantly share code, notes, and snippets.

@devyfriend
Last active December 11, 2015 16:18
Show Gist options
  • Save devyfriend/4626200 to your computer and use it in GitHub Desktop.
Save devyfriend/4626200 to your computer and use it in GitHub Desktop.
my common setting with wampserver
/* httpd.conf */
Listen 91
<Virtualhost *:91>
ServerName localhost
ServerAdmin me@me.com
DirectoryIndex index.html index.php
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" comonvhost
CustomLog logs/access_log_99.txt comonvhost
DocumentRoot "d:/wamp/www/whatever/"
<Directory "d:/wamp/www/whatever/">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All
</Directory>
</Virtualhost>
/* php.ini */
date.timezone = Asia/Jakarta
[Zend]
zend_extension_manager.optimizer_ts="d:/wamp\optimizer\lib\Optimizer-3.2.0"
zend_extension_ts="d:/wamp\optimizer\lib\ZendExtensionManager.dll"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment