Last active
January 3, 2017 00:37
-
-
Save olragon/8066800 to your computer and use it in GitHub Desktop.
HHVM config for Drupal 7 with clean urls working fine.
This file contains hidden or 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
#!/usr/bin/env bash | |
sudo hhvm --config site1.hhvm.hdf --user www-data --mode daemon -v "Log.Level=Verbose" -v "Log.NoSilencer=on" -v "Log.Header=on" |
This file contains hidden or 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
Server { | |
Port = 8001 | |
SourceRoot = /var/www/site1 | |
DefaultDocument = index.php | |
} | |
Eval { | |
Jit = true | |
} | |
Log { | |
Level = Error | |
UseLogFile = true | |
File = /var/log/hhvm/error.log | |
Access { | |
* { | |
File = /var/log/hhvm/access.log | |
Format = %h %l %u %t \"%r\" %>s %b | |
} | |
} | |
} | |
VirtualHost { | |
* { | |
Pattern = .* | |
ServerVariables { | |
PHP_SELF = /index.php | |
SCRIPT_NAME = /index.php | |
} | |
RewriteRules { | |
index { | |
pattern = ^(.*)$ | |
to = index.php/$1 | |
qsa = true | |
} | |
} | |
} | |
} | |
StaticFile { | |
FilesMatch { | |
* { | |
pattern = .*\.(dll|exe) | |
headers { | |
* = Content-Disposition: attachment | |
} | |
} | |
} | |
Extensions { | |
css = text/css | |
gif = image/gif | |
html = text/html | |
jpe = image/jpeg | |
jpeg = image/jpeg | |
jpg = image/jpeg | |
png = image/png | |
tif = image/tiff | |
tiff = image/tiff | |
txt = text/plain | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment