Директива Location не разрешена nginx

Директива Location не разрешена nginx

Здравствуйте, я настраиваю php с nginix и мне нужно добавить некоторый код в

/etc/nginx/nginx.conf file. 

Мой файл nginx.conf на данный момент выглядит так

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

Я получаю эту ошибку, когда пытаюсь добавить строки ниже

Директива location не допускается в /etc/nginx/nginx.conf

строки, которые я пытаюсь добавить

   location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;
            include        fastcgi_params;
        }

Полный скрипт после добавления строк выглядит так

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    gzip  on;

    include /etc/nginx/conf.d/*.conf;
}
location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;
                include        fastcgi_params;
            }

PS руководство, которому я следую для установки php в nginx, можно найти по адресу http://www.cyberciti.biz/faq/rhel-fedora-install-configure-nginx-php5/

Пожалуйста, помогите мне настроить

решение1

Пожалуйста, проверьте ссылку на nginx:

Местоположение можно добавить только внутри server { }блока или другого location { }блока .

Context:    server location

Связанный контент