首页 新闻 会员 周边 捐助

cenos7 安装nginx后修改nginx.conf使用到了proxy_pass,但是修改后重启报错

0
[待解决问题]

unknown directive "proxy_pass”
只报出了这个,怎么处理呢???

停不下来的菜鸟的主页 停不下来的菜鸟 | 菜鸟二级 | 园豆:224
提问于:2019-01-15 13:52

建议提供更多配置内容

dudu 5年前

@dudu: 只是在server 当中加了 location / {
      proxy_pass http://10.4.99.23:8080;
    }

停不下来的菜鸟 5年前
< >
分享
所有回答(3)
0

报错显示
" proxy_pass" 这是未知指令
proxy_pass 前面有很多的空格??
去掉前面的空格呢??
还是不识别proxy_pass??

不知道哎!!!好奇怪

xiaobaiskill | 园豆:1122 (小虾三级) | 2019-01-15 14:42
0

所有配置都贴出来, 可能是你结构有问题

LubinLew | 园豆:278 (菜鸟二级) | 2019-01-15 14:48

只改过红框里的,其他的都没动

支持(0) 反对(0) 停不下来的菜鸟 | 园豆:224 (菜鸟二级) | 2019-01-15 14:50

支持(0) 反对(0) 停不下来的菜鸟 | 园豆:224 (菜鸟二级) | 2019-01-15 14:51

@停不下来的菜鸟: 粘贴一个纯文本好吗

支持(0) 反对(0) LubinLew | 园豆:278 (菜鸟二级) | 2019-01-15 16:59

@LubinLew:

user nobody;

worker_processes 1;

error_log logs/error.log;

error_log logs/error.log notice;

error_log logs/error.log info;

pid logs/nginx.pid;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;

#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
#                  '$status $body_bytes_sent "$http_referer" '
#                  '"$http_user_agent" "$http_x_forwarded_for"';

#access_log  logs/access.log  main;

sendfile        on;
#tcp_nopush     on;

#keepalive_timeout  0;
keepalive_timeout  65;

#gzip  on;

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

location / {

root html;

index index.html index.htm;

}

location / {

proxy_pass http://10.4.80.33:8080;

    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
#    listen       8000;
#    listen       somename:8080;
#    server_name  somename  alias  another.alias;

#    location / {
#        root   html;
#        index  index.html index.htm;
#    }
#}


# HTTPS server
#
#server {
#    listen       443 ssl;
#    server_name  localhost;

#    ssl_certificate      cert.pem;
#    ssl_certificate_key  cert.key;

#    ssl_session_cache    shared:SSL:1m;
#    ssl_session_timeout  5m;

#    ssl_ciphers  HIGH:!aNULL:!MD5;
#    ssl_prefer_server_ciphers  on;

#    location / {
#        root   html;
#        index  index.html index.htm;
#    }
#}

}

支持(0) 反对(0) 停不下来的菜鸟 | 园豆:224 (菜鸟二级) | 2019-01-15 17:01

@停不下来的菜鸟: 你写了两个 location / 当然不行了

worker_processes auto;
error_log logs/error.log error;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;

server {
listen       80;
server_name  localhost;

location / {
    proxy_pass http://10.4.80.33:8080;
}

}

支持(0) 反对(0) LubinLew | 园豆:278 (菜鸟二级) | 2019-01-18 16:50
0

检查下 配置文件里大括号是否成对,我看上面的截图,http和server好像都少个收括号

顾星河 | 园豆:7277 (大侠五级) | 2019-01-15 16:50
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册