有人能帮我解决这个问题吗?下面是我的代码:
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
下面是我得到的错误:
nginx: [emerg] unknown directive "location/" in etc/nginx/sites-enabled/flask_appt:5
nginx: configuration file /etc/nginx/nginx.conf test failed
我试着看看是否有改变/到一个\,甚至删除它,但它不工作,我也使sudo apt更新,看看问题是某种更新,我也试图重写代码再次,但它不工作。
1条答案
按热度按时间44u64gxh1#
应该是
etc/nginx/sites-enabled/flask_appt
中location
和/
之间的空格。