国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

阿里云ubuntu14.04 Nginx反向代理Nodejs

BigNerdCoding / 1902人閱讀

摘要:通過命令行登陸阿里云服務器下載源碼包進入下載路徑其中文件是軟件的自動腳本程序。運行自動腳本會完成兩項工作一是檢查環境,根據環境檢查結果生成代碼二是生成編譯代碼需要的文件。在服務器啟動注意監聽的端口與配置的要一致。

Install Nginx

0.通過ssh命令行登陸阿里云服務器

ssh root@your_ip_address

1.下載源碼包

 wget http://nginx.org/download/nginx-1.9.10.tar.gz

2.進入下載路徑

$ ./configure
$ make
$ make install

其中configure文件是Nginx軟件的自動腳本程序。運行configure自動腳本會完成兩項工作:

一是檢查環境,根據環境檢查結果生成C代碼;
二是生成編譯代碼需要的Makefile文件。

Start Nginx

安裝后程序在usr/local下面,執行

$ ./sbin/nginx
查看是否啟動成功

可以使用Linux自帶的ps工具

ps -ef | grep nginx
root     14358     1  0 11:20 ?        00:00:00 nginx: master process ./sbin/nginx
nobody   14359 14358  0 11:20 ?        00:00:00 nginx: worker process
nobody   14360 14358  0 11:20 ?        00:00:00 nginx: worker process
nobody   14361 14358  0 11:20 ?        00:00:00 nginx: worker process
root     14433 14278  0 12:32 pts/1    00:00:00 grep --color=auto nginx

顯示啟動成功,包括一個主線程和三個worker線程。

配置nginx.conf

下面是整個nginx.conf配置文件

#user  nobody;
worker_processes  3;
.
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
    #log_format  main  "$remote_addr - $remote_user [$time_local] "$request" "
    #                  "$status $body_bytes_sent "$http_referer" "
    #                  ""$http_user_agent" "$http_x_forwarded_for"";

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    upstream nodejs__upstream {
        server 127.0.0.1:3000;
        eepalive 64;
    }
    server {
        listen       80;
        server_name  jianqunzhang.com www.jianqunzhang.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
               proxy_set_header   X-Real-IP            $remote_addr;
                proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
                proxy_set_header   Host                   $http_host;
                proxy_set_header   X-NginX-Proxy    true;
                proxy_set_header   Connection "";
                proxy_http_version 1.1;
                proxy_pass         http://nodejs__upstream;
        }

        #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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

其中主要增加修改如下配置

upstream nodejs__upstream {
    server 127.0.0.1:3000;
    keepalive 64;
}
server {
    listen       80;
    server_name  jianqunzhang.com www.jianqunzhang.com;
    
    #charset koi8-r;
    
    #access_log  logs/host.access.log  main;
    
    location / {
            proxy_set_header   X-Real-IP $remote_addr;
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header   Host $http_host;
            proxy_set_header   X-NginX-Proxy    true;
            proxy_set_header   Connection "";
            proxy_http_version 1.1;
            proxy_pass         http://nodejs__upstream;
}

其中proxy_set_header指令可以更改Nginx服務器接收到的客戶端請求的請求頭信息,然后將新的請求頭發送給被代理的服務器。

在服務器啟動nodejs,注意監聽的端口與配置的nginx.conf要一致。本配置直接監聽3000端口。
如果proxy_pass http://nodejs__upstream;在不設置http://時,要注意

upstream nodejs__upstream {
    server 127.0.0.1:3000;
    keepalive 64;
}

的server 要加上http://,如

upstream nodejs__upstream {
    server http://127.0.0.1:3000;
    keepalive 64;
}

啟動nodejs后,訪問所設置的域名即可。

Install PM2

PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.

npm i pm2 -g
start app
pm2 start bin/www

到目前為止,整個項目算是跑起來了。記錄一下同時也希望對小伙伴們有所幫助。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39223.html

相關文章

  • 阿里服務器之項目線上部署過程

    摘要:還有需要配置安全組,在阿里云控制臺中進行配置,添加和端口,才能夠訪問到線上服務器。 在搭建web全棧的過程中,最令我頭疼的就是項目的部署與上線,這個過程雖然簡單,但是對于全棧菜鳥的我來說真的是個大坑,但是我還是去嘗試,終于通過各種文檔、請教與實踐中完成了線上部署,在此做一下記錄與總結 一、購買服務器 服務器選擇:服務器的品牌有很多,如亞馬遜、阿里云、騰訊等等,各大廠商之間的產品、服務...

    sevi_stuo 評論0 收藏0
  • NodeJS項目遷移兼UbuntuNodeJS環境部署

    摘要:前言之前做的幾個項目都托管在阿里云服務器,但是最近要到期了。環境部署折騰了一天,其中也遇到幾個坑。項目遷移歷時一天,兩臺服務器的系統都是位。 前言 之前做的幾個項目都托管在阿里云服務器,但是最近要到期了。想著到底要不要續期,畢竟100/月。后面看著阿里云有個活動,800/三年。果斷買下。環境部署折騰了一天,其中也遇到幾個坑。 目錄 一、安裝環境 1.1 安裝NodeJS環境 ...

    jlanglang 評論0 收藏0
  • NodeJS項目遷移兼UbuntuNodeJS環境部署

    摘要:前言之前做的幾個項目都托管在阿里云服務器,但是最近要到期了。環境部署折騰了一天,其中也遇到幾個坑。項目遷移歷時一天,兩臺服務器的系統都是位。 前言 之前做的幾個項目都托管在阿里云服務器,但是最近要到期了。想著到底要不要續期,畢竟100/月。后面看著阿里云有個活動,800/三年。果斷買下。環境部署折騰了一天,其中也遇到幾個坑。 目錄 一、安裝環境 1.1 安裝NodeJS環境 ...

    source 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<