-
-
Save kastner/1398498 to your computer and use it in GitHub Desktop.
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
LIBEXECDIR=/usr/libexec/apache2 |
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
*.lock.* | |
*.pid |
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
RewriteEngine On | |
RewriteRule foo index.php [L] |
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
PidFile httpd.pid | |
LockFile httpd.lock | |
LogFormat "%h %l %u %t \"%r\" %>s %b" common | |
ErrorLog "| cat >&2" | |
CustomLog "| cat" common | |
<FilesMatch "^\.([Hh][Tt]|[Dd][Ss]_[Ss])"> | |
Order allow,deny | |
Deny from all | |
Satisfy All | |
</FilesMatch> | |
# PHPIniDir /Volumes/EtsyDotCom/conf/ | |
DirectoryIndex index.html index.php |
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
<?php | |
echo "Hi"; |
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
web: httpd -X -f app.conf -d `pwd` -C "LoadModule authz_host_module $LIBEXECDIR/mod_authz_host.so" -C "LoadModule php5_module $LIBEXECDIR/libphp5.so" -C "LoadModule dir_module $LIBEXECDIR/mod_dir.so" -C "LoadModule mime_module $LIBEXECDIR/mod_mime.so" -C "LoadModule rewrite_module $LIBEXECDIR/mod_rewrite.so" -C "LoadModule log_config_module $LIBEXECDIR/mod_log_config.so" -C "Listen $PORT" -C "AddType application/x-httpd-php .php" -C "DocumentRoot `pwd`" -DFOREGROUND |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment