# Unzip the zip pack [Email protected] ~]# Tar XF nginx-1.6.1.tar.gz # go to the extracted directory [Email protected] ~]# CD nginx-1.6.1 # perform the following command to see the parameters required to execute the./configure #--prefix==path Setting Installation location #--user=user Set the user who can start the program #--group=group Set the group of users who can start this program # You can also look at other parameters that need attention and see if you need to set the [Email protected] nginx-1.6.1]#/configure--help
--HELP Print this message
--prefix=path Set Installation Prefix --sbin-path=path set Nginx binary pathname --conf-path=path Set nginx.conf pathname --error-log-path=path Set error Log pathname --pid-path=path Set Nginx.pid pathname --lock-path=path Set Nginx.lock pathname
--user=user set non-privileged user for Worker processes --group=group set non-privileged Group for Worker processes
--builddir=dir Set Build Directory
--with-rtsig_module Enable Rtsig module --with-select_module Enable Select module --without-select_module Disable Select module --with-poll_module Enable poll module --without-poll_module Disable Poll module
|