VPS侦探论坛

 找回密码
 注册
查看: 5843|回复: 4

配置域名只能访问根目录

[复制链接]
发表于 2013-7-28 19:25:08 | 显示全部楼层 |阅读模式

只能访问根目录,下的单个文件,如,www.xxx.com/p.php能访问,而不能访问下面的文件夹,比如说,www.xxx.com/install这个目录就不能访问,通过IP访问却是正常的,这样我网站程序都安装不了,这是我网站域名配置,哪里有错么
  1. server
  2.         {
  3.                 listen       80;
  4.                 server_name www.xxx.com;
  5.                 index index.html index.htm index.php default.html default.htm default.php;
  6.                 root  /home/wwwroot/xxx;

  7.                                    error_page 404 /404.html;
  8.                 include none.conf;
  9.                 location ~ .*\.(php|php5)?$
  10.                         {
  11.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  12.                                 fastcgi_index index.php;
  13.                                 include fcgi.conf;
  14.                         }

  15.                

  16.                 location ~ .*\.(js|css)?$
  17.                         {
  18.                                 expires      12h;
  19.                         }
  20.                                      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  21.                         {
  22.                                 valid_referers none blocked *.xxx.com;
  23.                                 if ($invalid_referer) {
  24.                                 rewrite ^/ http://img181.poco.cn/mypoco/myphoto/20110603/22/452091912011060322045809.jpg;
  25.                                 #return 404;
  26.                                 }
  27.                                 expires      30d;
  28.                         }

  29.                 access_log off;
  30.         }
复制代码
这是ngnix.conf的内容
  1. user  www www;

  2. worker_processes 3;

  3. error_log  /home/wwwlogs/nginx_error.log  crit;

  4. pid        /usr/local/nginx/logs/nginx.pid;

  5. #Specifies the value for maximum file descriptors that can be opened by this process.
  6. worker_rlimit_nofile 51200;

  7. events
  8.         {
  9.                 use epoll;
  10.                 worker_connections 51200;
  11.         }

  12. http
  13.         {
  14.                 include       mime.types;
  15.                 default_type  application/octet-stream;

  16.                 server_names_hash_bucket_size 128;
  17.                 client_header_buffer_size 32k;
  18.                 large_client_header_buffers 4 32k;
  19.                 client_max_body_size 50m;

  20.                 sendfile on;
  21.                 tcp_nopush     on;

  22.                 keepalive_timeout 60;

  23.                 tcp_nodelay on;

  24.                 fastcgi_connect_timeout 300;
  25.                 fastcgi_send_timeout 300;
  26.                 fastcgi_read_timeout 300;
  27.                 fastcgi_buffer_size 64k;
  28.                 fastcgi_buffers 4 64k;
  29.                 fastcgi_busy_buffers_size 128k;
  30.                 fastcgi_temp_file_write_size 256k;

  31.                 gzip on;
  32.                 gzip_min_length  1k;
  33.                 gzip_buffers     4 16k;
  34.                 gzip_http_version 1.0;
  35.                 gzip_comp_level 2;
  36.                 gzip_types       text/plain application/x-javascript text/css application/xml;
  37.                 gzip_vary on;
  38.                 gzip_proxied        expired no-cache no-store private auth;
  39.                 gzip_disable        "MSIE [1-6]\.";

  40.                 #limit_zone  crawler  $binary_remote_addr  10m;

  41.                 server_tokens off;
  42.                 #log format
  43.                 log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
  44.              '$status $body_bytes_sent "$http_referer" '
  45.              '"$http_user_agent" $http_x_forwarded_for';

  46. server
  47.         {
  48.                 listen       80;
  49.                 server_name www.xxx.com;
  50.                 index index.html index.htm index.php default.html default.htm default.php;
  51.                 root  /home/wwwroot/xxx;

  52.                 location ~ .*\.(php|php5)?$
  53.                         {
  54.                                 try_files $uri =404;
  55.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  56.                                 fastcgi_index index.php;
  57.                                 include fcgi.conf;
  58.                         }

  59.                 location /status {
  60.                         stub_status on;
  61.                         access_log   off;
  62.                 }

  63.                 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  64.                         {
  65.                                 expires      30d;
  66.                         }

  67.                 location ~ .*\.(js|css)?$
  68.                         {
  69.                                 expires      12h;
  70.                         }

  71.                 access_log  /home/wwwlogs/access.log  access;
  72.         }
  73. include vhost/*.conf;
  74. }
复制代码

[ 本帖最后由 myvapour 于 2013-7-28 20:21 编辑 ]
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2013-7-28 20:17:14 | 显示全部楼层


不能访问什么错误信息?
什么程序

配置里没错误
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
 楼主| 发表于 2013-7-28 20:19:38 | 显示全部楼层

回复 2# 的帖子


服务器错误
网站在检索 http://www.xxx.com/e/install/ 时遇到错误。 该网站可能关闭进行维护或配置不正确。
以下是一些建议:
请稍后重新加载此网页。
HTTP 错误 500(Internal Server Error):服务器尝试执行请求时遇到了意外情况。



只提示这个错误,帝国CMS,IP访问是正常的!
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
 楼主| 发表于 2013-7-28 21:11:46 | 显示全部楼层

回复 2# 的帖子




ngnix.conf里的域名如果改成自己的域名二级目录也打不开,如果用www.lnmp.org就没事!
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
 楼主| 发表于 2013-7-28 21:37:00 | 显示全部楼层

回复 2# 的帖子


找到问题了,文件夹必须是www.xxx.com

root  /home/wwwroot/www.dasuzhong.com;

如果换成别的文件夹就不行!

军哥运维代购:http://shop63846532.taobao.com/

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-12-24 11:29 , Processed in 0.026831 second(s), 16 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表