ฉันจะใช้หรือกำหนดค่าได้อย่างไร proxy_pass
ใน NGINX เพื่อแสดงแอปพลิเคชันตอบสนองของฉันเมื่อมีผู้เยี่ยมชมเว็บไซต์ของฉัน
ด้านล่างนี้คุณสามารถอ่านการกำหนดค่าที่ฉันใช้อยู่ แต่มันไม่ทำงานอย่างที่ฉันคาดไว้และเปลี่ยนเส้นทางไปที่ website.com:3000
# สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการกำหนดค่า ดู:
# * เอกสารภาษาอังกฤษอย่างเป็นทางการ: http://nginx.org/en/docs/
# * เอกสารทางการของรัสเซีย: http://nginx.org/ru/docs/
ผู้ใช้ nginx;
worker_processes อัตโนมัติ
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# โหลดโมดูลไดนามิก ดู /usr/share/doc/nginx/README.dynamic
รวม /usr/share/nginx/modules/*.conf;
เหตุการณ์ {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request"'
'$สถานะ $body_bytes_sent "$http_referer"'
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log หลัก;
ส่งไฟล์บน;
tcp_nopush บน;
tcp_nodelay บน;
keepalive_timeout 65;
types_hash_max_size 4096;
รวม /etc/nginx/mime.types;
แอปพลิเคชัน default_type/octet-stream;
# โหลดไฟล์การกำหนดค่าโมดูลจากไดเร็กทอรี /etc/nginx/conf.d
# ดู http://nginx.org/en/docs/ngx_core_module.html#include
# สำหรับข้อมูลเพิ่มเติม.
รวม /etc/nginx/conf.d/*.conf;
เซิร์ฟเวอร์ {
ฟัง 80 default_server;
ฟัง [::]:80 default_server;
server_name dummyReactSite.com;
#root /usr/share/nginx/html;
รวม /etc/nginx/default.d/*.conf;
ที่ตั้ง / {
proxy_pass http://127.0.0.1:3000/;
}
error_page 404 /404.html;
สถานที่ = /404.html {
}
error_page 500 502 503 504 /50x.html;
ตำแหน่ง = /50x.html {
}
}
}