Created
December 2, 2012 16:01
-
-
Save geta6/4189467 to your computer and use it in GitHub Desktop.
Nginx configure options
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
apt-get install libpcre3-dev libssl-dev zlib1g-dev | |
./configure \ | |
--prefix=/usr/local \ | |
--conf-path=/usr/local/etc/nginx.conf \ | |
--pid-path=/usr/local/var/run/nginx.pid \ | |
--error-log-path=/usr/local/var/log/error.log \ | |
--http-log-path=/usr/local/var/log/access.log \ | |
--with-http_dav_module --with-http_mp4_module \ | |
--with-http_secure_link_module --with-http_ssl_module \ | |
--without-http_uwsgi_module --without-http_scgi_module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment