浏览器访问正常,wget获得的却是404
我用的是nginx做的前端,tomcat在后端
用浏览器访问http://www.52xinghuo.com正常
用wget http://www.52xinghuo.com/ 却是404错误。
[root@hotelweb ~]# wget http://www.52xinghuo.com
--14:53:44-- http://www.52xinghuo.com/
正在解析主机 www.52xinghuo.com... 119.88.56.117
Connecting to www.52xinghuo.com|119.88.56.117|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 404 Not Found
14:53:44 错误 404:Not Found。
配置文件如下:
#user nobody;
worker_processes 2;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
use epoll;
worker_connections 4096;
}
http {
include mime.types;
default_type application/octet-stream;
server_tokens off;
#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;
limit_zone one $binary_remote_addr 10m;
gzip on;
gzip_min_length 1000;
gzip_types text/plain application/x-javascript text/css text/html application/xml text/javascript;
server {
listen 80;
server_name www.52xinghuo.com 52xinghuo.com localhost;
#charset koi8-r;
#rewrite ^/ http://www.52xinghuo.com/index.html permanent;
if ($host != 'www.52xinghuo.com' ) {
rewrite ^/(.*)$ http://www.52xinghuo.com/$1 permanent;
}
#access_log logs/host.access.log main;
location ~*.(jpg|jpeg|gif|png|swf|css|js|txt|xml)$ {
root html;
expires 1d;
break;
}
location ~*.(ftl)$ {
deny all;
}
location / {
root html;
index index.html;
try_files $uri @to_other;
}
location @to_other{
proxy_pass http://127.0.0.1:81;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
#error_page 404 /404.html;
error_page 404 /home.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;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
引用来自#9楼“mesopodamia”的帖子
哥们的Nginx配置中还有很多地方需要改进的。
1. 错误页面可以考虑重新自定义
2. 注释的地方可以删除,不然维护起来很麻烦
3. 日志处理方面,可以考虑统一定义,关闭或者是导入/dev/null。
4. 为安全考虑,nginx运行用户可以考虑使用未登录权限的其他用户。
哥们的Nginx配置中还有很多地方需要改进的。
1. 错误页面可以考虑重新自定义
2. 注释的地方可以删除,不然维护起来很麻烦
3. 日志处理方面,可以考虑统一定义,关闭或者是导入/dev/null。
4. 为安全考虑,nginx运行用户可以考虑使用未登录权限的其他用户。
引用来自#7楼“joliny”的帖子
发现是try_files的原因。苍天啊。我要哭了。
发现是try_files的原因。苍天啊。我要哭了。
引用来自#4楼“范堡”的帖子
http://www.oschina.net/code/snippet_17_298
这里有我正在运行中 Nginx 的配置,没有你出现的问题嘿,你对照一下。
我是用tomcat解析的*.html nginx默认为index 直接转发给tomcat index.html的
http://www.oschina.net/code/snippet_17_298
这里有我正在运行中 Nginx 的配置,没有你出现的问题嘿,你对照一下。
试了一下, 应该是没有设置默认页为index.html
如果 wget http://www.52xinghuo.com/index.html 就正常.
大家帮忙看看是什么问题呀。急。提前谢谢啦。