diff --git a/Lighttpd.md b/Lighttpd.md index dcacc7e..fb35f80 100644 --- a/Lighttpd.md +++ b/Lighttpd.md @@ -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. diff --git a/PHP.md b/PHP.md index 76ffd37..0a63d9b 100644 --- a/PHP.md +++ b/PHP.md @@ -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 diff --git a/Setup.md b/Setup.md index 3bb1f70..2fb9ad2 100644 --- a/Setup.md +++ b/Setup.md @@ -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. \ No newline at end of file + If a package fails to compile with clang, you can comment out those lines, and recompile the package with GCC.