天天看點

CentOS7 安裝Nginx 及配置

首先安裝PCRE pcre-devel 和Zlib,因為配置nginx的時候會需要這兩個東西

PCRE(Perl Compatible Regular Expressions) 是一個Perl庫,包括 perl 相容的正規表達式庫。nginx 的 http 子產品使用 pcre 來解析正規表達式,是以需要在 linux 上安裝 pcre 庫,pcre-devel 是使用 pcre 開發的一個二次開發庫。nginx也需要此庫。指令:

yum install -y pcre pcre-devel
           

zlib 庫提供了很多種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的内容進行 gzip ,是以需要在 Centos 上安裝 zlib 庫。

yum install -y zlib zlib-devel
           

雖然我安裝的時候安裝着兩個兒就可以了,但是如果有需要,根據error提示可能還需要GCC和OpenSSL

yum install gcc-c++
           
yum install -y openssl openssl-devel
           

好,現在我們開始安裝nginx, 擷取位址 直接搜nginx 進入頁面 複制最新下載下傳位址

wget -c http://nginx.org/download/nginx-1.17.4.tar.gz
           

解壓并進入nginx目錄

tar -xzvf nginx-1.17.4.tar.gz
           
cd nginx-1.17.4
           

使用nginx的預設配置

./configure
           

編譯安裝

make

make install

查找安裝路徑:

whereis nginx

CentOS7 安裝Nginx 及配置

進入sbin目錄,可以看到有一個可執行檔案nginx,直接./nginx執行就OK了。

運作起來之後通路伺服器ip,可以看到nginx的歡迎頁面

CentOS7 安裝Nginx 及配置

nginx.conf 進行編輯,注:listen 端口号如80 和代理端口号如8080 不要一樣

server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /usr/local/my/dist;
            index  index.html index.htm;
        }

        location /my{
            proxy_pass http://127.0.0.1:8080/;   
        }

	location /myapk {
            alias  /usr/local/my/apk/;
        }
		

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
           

啟動nginx: 

cd usr/local/nginx/sbin   ./nginx
           

nginx重新開機:

進入nginx可執行目錄sbin下,輸入指令./nginx -s reload 即可

繼續閱讀