Minor updates

This commit is contained in:
Timothy Warren 2012-01-24 16:57:15 -05:00
parent 4e13f33fb2
commit 92b9957eac
3 changed files with 10 additions and 2 deletions

View File

@ -28,3 +28,4 @@ to look like so:
To make adding/editing websites easier, I recommend creating a `/etc/lighttpd/sites.conf` file, and including it in the `/etc/lighttpd/lighttpd.conf` file.

3
PHP.md
View File

@ -5,7 +5,8 @@
In order for PHP to be most useful, it should have as many of the modules installed as will be used. I recommend installing it using the FPM sapi, which manages php session spawning.
Here are some recommended flags:
`mysql utf8 threads -readline libssh2 -cgi fpm xcache suhosin postgres mysqlnd reflection session simplexml sockets spl pdo mbstring sqlite3 mysqli soap`
`mysql utf8 threads -readline libssh2 -cgi fpm xcache suhosin postgres
mysqlnd reflection session simplexml sockets spl pdo mbstring sqlite3 mysqli soap exif`
## PHP_TARGETS

View File

@ -3,6 +3,12 @@
1. Follow the Gentoo Handbook for installing Gentoo
[Gentoo Handbook](http://www.gentoo.org/doc/en/handbook/)
Generally, you can just use the amd64 version of Gentoo, as most servers now are 64-bit compatible
[amd64 handbook](http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml)
2. Install LLVM/Clang (Optional)
@ -15,4 +21,4 @@
CC=/usr/bin/clang
CXX=/usr/bin/clang++
If a package fails to compile with clang, you can comment out those lines, and recompile the package with GCC.
If a package fails to compile with clang, you can comment out those lines, and recompile the package with GCC.