Created
May 14, 2014 09:14
-
-
Save flashvnn/b1a3cca298ffc40377fb to your computer and use it in GitHub Desktop.
Config APC on windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot "D:\devsoft\xampp\htdocs\migratedev" | |
ServerName migratedev.dev | |
ErrorLog "logs/migratedev.dev-error.log" | |
CustomLog "logs/migratedev.dev-access.log" common | |
<Directory "D:\devsoft\xampp\htdocs\migratedev"> | |
AllowOverride All | |
php_admin_value apc.enabled 1 | |
php_admin_value apc.filters "-D:/devsoft/xampp/htdocs/migratedev/sites/all/modules/custom/*" | |
</Directory> | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension=php_apc.dll | |
;;;;;;;;;;;;;;;;;;; | |
; Module Settings ; | |
;;;;;;;;;;;;;;;;;;; | |
[APC] | |
apc.enabled = 1 | |
apc.shm_segments = 1 | |
apc.shm_size = 128M | |
apc.max_file_size = 2M | |
apc.rfc1867 = 1 | |
apc.stat=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment