ฉันกำลังเผชิญกับข้อผิดพลาดนี้
การเริ่มต้น nginx: nginx: [emerg] คำสั่ง "ตำแหน่ง" ไม่ได้รับอนุญาตที่นี่ใน /etc/nginx/nginx.conf:49 nginx: ไฟล์การกำหนดค่า /etc/nginx/nginx.conf การทดสอบล้มเหลว
นี่คือไฟล์ nginx.conf ของฉัน:
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการกำหนดค่า ดู:
2 # * เอกสารภาษาอังกฤษอย่างเป็นทางการ: http://nginx.org/en/docs/
3 # * เอกสารทางการของรัสเซีย: http://nginx.org/ru/docs/
4
5 ผู้ใช้ nginx;
6 worker_processes อัตโนมัติ;
7 error_log /var/log/nginx/error.log;
8 pid /run/nginx.pid;
9
10 # โหลดโมดูลไดนามิก ดู /usr/share/doc/nginx/README.dynamic
11 รวม /usr/share/nginx/modules/*.conf;
12
13 เหตุการณ์ {
14 worker_connections 1024;
15 }
16
17 http {
18 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
19 '$สถานะ $body_bytes_sent "$http_referer" '
20 '"$http_user_agent" "$http_x_forwarded_for"';
21
22 access_log /var/log/nginx/access.log หลัก;
23
24 เปิดไฟล์;
25 tcp_nopush บน;
26 tcp_nodelay บน;
27 keepalive_timeout 65;
28 types_hash_max_size 4096;
29
30 รวม /etc/nginx/mime.types;
31 แอปพลิเคชัน default_type/octet-stream;
32
33 # โหลดไฟล์การกำหนดค่าโมดูลจากไดเร็กทอรี /etc/nginx/conf.d
34 # ดู http://nginx.org/en/docs/ngx_core_module.html#include
35# สำหรับข้อมูลเพิ่มเติม.
36 รวม /etc/nginx/conf.d/*.conf;
37 รวม /etc/nginx/sites-enabled/*.conf;
38
เซิร์ฟเวอร์ 39 # {
40 # ฟัง 80;
41 # ฟัง [::]:80;
42 # ชื่อเซิร์ฟเวอร์ _;
43 # ราก /usr/share/nginx/html;
44
45 # โหลดไฟล์การกำหนดค่าสำหรับบล็อกเซิร์ฟเวอร์เริ่มต้น
46 รวม /etc/nginx/default.d/*.conf;
47
48 error_page 404 /404.html;
49 ตำแหน่ง = /404.html {
50 }
51
52 error_page 500 502 503 504 /50x.html;
53 ตำแหน่ง = /50x.html {
54 }
55 }
56
57 # การตั้งค่าสำหรับเซิร์ฟเวอร์ที่เปิดใช้งาน TLS
58 #
59 # เซิร์ฟเวอร์ {
60 # ฟัง 443 ssl http2;
61 # ฟัง [::]:443 ssl http2;
62 # ชื่อเซิร์ฟเวอร์ _;
63 # ราก /usr/share/nginx/html;
64 #
65 # ssl_certificate "/etc/pki/nginx/server.crt";
66 # ssl_certificate_key "/etc/pki/nginx/private/server.key";
67 # ssl_session_cache ที่ใช้ร่วมกัน:SSL:1m;
68 # ssl_session_timeout 10m;
69 # ssl_ciphers โปรไฟล์ = ระบบ;
70 # ssl_prefer_server_ciphers บน;
71 #
72 # # โหลดไฟล์การกำหนดค่าสำหรับบล็อกเซิร์ฟเวอร์เริ่มต้น
73 # รวม /etc/nginx/default.d/*.conf;
74 #
75 # error_page 404 /404.html;
76 # สถานที่ = /40x.html {
77 # }
78 #
79 # error_page 500 502 503 504 /50x.html;
80 # ตำแหน่ง = /50x.html {
81 # }
82 # }
83
84 }
85