0

在 Ubuntu 12.04 LTS 服务器上设置 nginx。除了这个配置文件之外,所有的一切都没有让我像我应该能够的那样使用域访问 www/ 下的文件。

这是我的文件:

server {
    listen   80;


    root /usr/share/nginx/www;
    index index.php index.html index.htm;

    server_name beta.davidheward.com;

    location / {
            try_files $uri $uri/ /index.html;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
          root /usr/share/nginx/www;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ .+\.php$ {
            #fastcgi_pass 127.0.0.1:9000;
            # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

}

任何想法为什么会这样,将不胜感激。我正在尝试访问 beta.davidheward.com/info.php

非常感谢。

4

1 回答 1

0

(也检查您的 DNS,您需要在A entry那里添加子域)

listen   80;

应该:

listen   your_full_ip;  // xxx.xxx.xx.xx (dont need to add the port if is the port 80)

这些:

location ~ .+\.php$ {

进入这些:

location ~ \.php$ {

将这两行移到服务器块:fastcgi_index index.php;包括 fastcgi_params;

将服务器块按顺序排列:

server_name beta.davidheward.com;
listen   your_full_ip;
index index.php index.html index.htm;
root /usr/share/nginx/www;

希望能帮助到你。完成后重新启动 nginx!

于 2013-05-06T22:12:54.390 回答