nginx + nodejs + linux(or local)
yeomandaプロジェクトの進行中、nodejsのセキュリティがどんなに良くても、エージェントサーバがあるほうがいいと思いますが、本当に配備すれば負荷バランスが必要なので、前回ウィンドウ環境でテストした
ローカル環境で設定とテストを行い、実際のLinuxサーバに適用する手順を実行します.
nginxインストール
homebrewでインストールしました.
私のような場合は、
ここには以下の書類があります.
よく言われる設定ファイルは上の ここには重要な点がある.
実際にnginxサーバを切り替えたい場合は、
止めたいのは
ローカルで検証しました.実際のlinuxサーバから戻りましょう.
nginxインストール
以下のようにファイル名を指定し、設定ファイルを設定します.
そして、上のファイルは
nginx status check
https://blog.logrocket.com/how-to-run-a-node-js-server-with-nginx/
https://jjeongil.tistory.com/1559
load balancing with nginx
今回実際に配備することにしました.ローカル環境で設定とテストを行い、実際のLinuxサーバに適用する手順を実行します.
nginxインストール
homebrewでインストールしました.
$ brew install nginx
ファイルの場所▼▼私のような場合は、
/usr/local/etc/nginx
ここに設置されていますここには以下の書類があります.
よく言われる設定ファイルは上の
nginx.conf
以下のように開きます.#user nobody;
worker_processes 1;
#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;
server {
listen 8000;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://localhost:3000;
}
#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;
# }
#}
include servers/*;
}
真ん中を見ると.server {
listen 8000;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://localhost:3000;
}
この部分がコアです.✏️listen 8000
ディボルトの価格は8080かもしれません.でも事前にmysqlサーバーを現在の8080に変更していたのでnginx: [emerg] bind() to 0.0.0.0:8080 failed (48: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (48: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (48: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (48: Address already in use)
次のエラーが発生しました.したがって、初めてリクエストを受信したポート番号を8000に設定します.location /
nginx proxyserverは実質的に接続したいipアドレスです.私は今、3000以上のポートをローカルでテストしているので、上に設定しました.実際にnginxサーバを切り替えたい場合は、
/usr/local/opt/nginx/bin
ここでは$ nginx
nginxサーバを駆動しています.止めたいのは
$ nginx -s stop
最初はGoogleで行いましたが、インストール場所が異なり、実行場所も異なりうろうろしていました.インストールしたnginx実行可能ファイルの場所を知るには、$ pgrep nginx | xargs ps -f -p
コマンドで次の結果を取得します.proxy server [linux]
ローカルで検証しました.実際のlinuxサーバから戻りましょう.
nginxインストール
$ sudo apt update
$ sudo apt install nginx
ファイルの場所/etc/nginx/sites-available
近づいてくるとdefault
ファイルを設定します.以下のようにファイル名を指定し、設定ファイルを設定します.
server {
listen 8000;
server_name example.com;
# nginx와 도메인 주소를 연결해 주는 역할을 합니다. 외부에서 example.com으로 들어오는 도메인 주소에서 요청이 들어오면
# 로컬에서 오픈되어 있는 아래의 " proxy_pass http://127.0.0.1:3000/; " 를 포워딩해줍니다.
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_pass http://127.0.0.1:3000/;
# server_name example.com;로 들어온 요청을 nginx가 받아, 로컬에서 오픈되어 있는
# "proxy_pass http://127.0.0.1:3000/;"를 포워딩해줍니다.
proxy_redirect off;
}
gzip on;
gzip_comp_level 2;
gzip_proxied any;
gzip_min_length 1000;
gzip_disable "MSIE [1-6]\."
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
}
上記のように設定ファイルを指定します.そして、上のファイルは
/etc/nginx/sites-enabled
下にコピーします.macosでプロファイルと実行可能ファイルの場所が異なるように.nginx status check
sudo nginx -t
nginx startsudo systemctl restart nginx
https://valuefactory.tistory.com/165 https://blog.logrocket.com/how-to-run-a-node-js-server-with-nginx/
https://jjeongil.tistory.com/1559
Reference
この問題について(nginx + nodejs + linux(or local)), 我々は、より多くの情報をここで見つけました https://velog.io/@jaymee/nginx-nodejs-linuxor-localテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol