1

Я установил VirtualBox на моем Mac и изменил settings с помощью VitualBox, Adapter 1 - Attached to: Host-only Adapter, Name: vboxnet0 .
и установить гостевые дополнения
./VBoxLinuxAdditions.run
«Настройки»> «Общие папки»> «Добавить определение новой общей папки». > «автоматическое крепление»

Когда я domain1.com.localhost показывает, No input file specified.. Я проверяю, существует ли папка, кажется, успех монтирования,
и я проверяю access.log показывает 404 , поэтому я сомневаюсь, что разрешение папки /media/sf_Sites неправильно? или что-то мне не хватает ??

ls -l /media /sf_Sites

drwxrwx---. 1 root vboxsf  domain1.com

vi /etc/nginx/nginx.conf

user nginx;

vi /etc/nginx/conf.d/default.conf

server {
  listen 80;
  server_name domain1.com.localhost www.domain1.com.localhost
  access_log /var/log/nginx/domain1.com.access.log;
  root /media/sf_Sites/domain1.com;
  index index.php index.html index.htm;
  try_files $uri $uri/ /index.php?$query_string;

  location /robots.txt {
    alias /media/sf_Sites/domain1.com/app/robots.txt;
  }

  location ^/(images/|javascripts) {
    root /media/sf_Sites/domain1.com/app/assets;
  }

  location ~ \.php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include /etc/nginx/fastcgi_params;

    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 32k;
    fastcgi_buffers 8 32k;
  }
}

на моем маке
sudo vi /etc /hosts

192.168.56.101 domain1.com.localhost

ОБНОВИТЬ

Я монтирую папку в /var /www /html /

mkdir /var/www/html/Sites
mount -t vboxsf Sites -o rw,dmode=777,gid=0,uid=0 /var/www/html/Sites

и измени конфиг nginx root /var/www/html/Sites и попробуй
domain1.com.localhost Я получил 403 Forbidden ,
domain1.com.localhost/info.php No input file specified domain1.com.localhost/index.html No input file specified

ls -l /var/www/html/Sites

-rwxrwxrwx. 1 корневой корень index.html -rwxrwxrwx. 1 root root info.php drwxrwxrwx. 1 корневой корень domain1.com

но если я создаю файл как зарегистрированный пользователь root в virtualbox, создаю файл index.html в /var/www/html/index.html и изменяю конфигурационный корень nginx, тогда я могу посетить файл ...

Зачем???

Я также пытаюсь изменить nginx user vi /etc/nginx/nginx.conf user nginx; > user root;

все еще не работает ...

0