前提・実現したいこと
http://domain.com:9999で起動できているnode.jsアプリを
http://domain.com/example で起動できる(見れる)ようにしたい
発生している問題・エラーメッセージ
https://tech-waplus.com/programming/20190410-nginx-node-js-web/
上記のサイトを参考に nginx.conf ファイルの「server {}」内を修正しました。
「http://domain.com/example」では Cannot GET /example と出てしまい確認できません。
該当のソースコード
/etc/nginx/conf.d/default.conf
user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { 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 /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 4096; include /etc/nginx/mime.types; default_type application/octet-stream; include /etc/nginx/conf.d/*.conf; server { listen 80; server_name domain.com/example; location / { proxy_pass http://localhost:9999/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } } ```### 試したこと ・「http://localhost:9999/」を「http://xxx.xxx.xxx.xxx:9999/」に変更など ・Nginxの再起動 ### 備考 [https://www.hiramine.com/programming/onlinebattletanks_nodejs_socketio/index.html](https://www.hiramine.com/programming/onlinebattletanks_nodejs_socketio/index.html) こちらのアプリを起動しようとしております。 情報に不足ございましたらご指摘いただけますと幸いです。 お手数をおかけしますがよろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/27 06:47
2021/10/27 12:14