Добрый день,
хост норм открывается только по своему имени, мне же нужно чтоб открывался он еще и по 127.0.0.1
скину свой конфиг может кто увидит загвостку
server {
charset utf-8;
client_max_body_size 128M;
listen 80; ## listen for ipv4
listen [::]:80 default_server ipv6only=on; ## listen for ipv6
server_name xxx;
root '/home/mmm/xxx/frontend/web/';
index index.php;
location / {
# Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php$is_args$args;
}
# uncomment to avoid processing of calls to non-existing static files by Yii
location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
try_files $uri =404;
}
#error_page 404 /404.html;
# deny accessing php files for the /assets directory
location ~ ^/assets/.*\.php$ {
deny all;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/var/run/php5-fpm.sock;
try_files $uri =404;
}
location ~* /\. {
deny all;
}
}
Всем спасибо, по 127.0.0.1 открывается окно "обзор файлов"
кстати при настройке дефаулт хоста по localhost/127.0.0.1 тоже самое использовал конфиг как в учебнике)
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
}
да и еще кое что заметил -
127.0.0.1/? тогда появляется welcome nginx - Без ? некак