3
Nginx ไม่เลือกไซต์ในไซต์ที่เปิดใช้งาน?
หลังจากการวิจัยนานกว่า 10 ชั่วโมงฉันยังไม่ทราบสาเหตุว่าทำไมจึงไม่ได้ผล! ฉันพยายามย้าย localhost ไปยังโฟลเดอร์ที่เปิดใช้งานไซต์ซึ่งอยู่ใน / etc / nginx / sites-enable / default เป็น symlink จากโฟลเดอร์ที่มีไซต์ เมื่อใช้การกำหนดค่าต่อไปนี้ฉันได้รับ "ไม่สามารถเชื่อมต่อ" โดยใช้ localhost: 8080 เป็นที่อยู่ของฉัน nginx.conf (/usr/local/nginx/conf/nginx.conf): user www-data; worker_processes 2; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; include /etc/nginx/sites-enabled/*; } ไซต์ที่พร้อมใช้งาน (/ etc …
103
nginx