gpt4 book ai didi

nginx - 为什么 nginx 提示未知指令?

转载 作者:行者123 更新时间:2023-12-03 16:43:32 24 4
gpt4 key购买 nike

我正在尝试引导所有类似于 /<uuid4> 的 HTTP 请求到在 localhost 上运行的特定 HTTP 服务器。以下是相关的location我的 nginx.conf 中的行:

# nginx.conf
upstream django {
server unix:///app/django.sock; # for a file socket
}

server {
access_log /var/log/access.log;
error_log /var/log/error.log;
listen 80;

server_name 127.0.0.1;
charset utf-8;

client_max_body_size 75M;

# Django media
location /media {
alias /app/media;
}

location /static {
alias /app/static;
}

location ~* "[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$" { # matches UUIDv4
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass localhost:8000;
}

# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /app/conf/uwsgi_params;
}
}

启动 nginx 时出现以下错误: nginx: [emerg] unknown directive "8}-([0-9a-f]" in /etc/nginx/sites-enabled/nginx.conf:30
是什么赋予了?

最佳答案

实际上你还有另一个错误。我检查了您的服务器 block 并得到以下信息:

$ sudo nginx -t
nginx: [emerg] invalid URL prefix in /etc/nginx/sites-enabled/test:23
nginx: configuration file /etc/nginx/nginx.conf test failed

这是关于 proxy_pass localhost:8000; 中缺少协议(protocol)的错误线。将其修复为 proxy_pass http://localhost:8000; 后配置测试通过。

可能您正在查看旧的(或错误的)错误日志。

关于nginx - 为什么 nginx 提示未知指令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32589283/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com