Попытка получить установку Ubuntu 18.04
для Wordpress
на хосте Win 10
. Хост совместно использует папку с виртуальной машиной, которая является корнем для нескольких проектов. Это новая виртуальная машина, созданная из стандартного Ubuntu 18/04 LTS x64 Server
.
Я устанавливаю nginx
и вижу Welcome page
. Затем я удаляю папку /var/www/html
и заново создаю символическую ссылку на мою общую папку:
sudo ln -s /media/sf_Wordpress /var/www/html
Когда я просматриваю свой сервер, я получаю 502 Bad Gateway
.
Если я cd
в /var/www/hmtl
получить permission denied
Если я перехожу в root
я могу получить доступ к папке и перечислить все файлы в общей папке.
Мой журнал nginx
говорит:
papa@wp:~$ tail -f /var/log/nginx/error.log
2018/05/30 05:05:05 [crit] 766#766: *4 stat() "/var/www/html/mysite1/" failed (13: Permission denied), client: 192.168.0.5, server: mysite1.com.au, request: "GET / HTTP/1.1", host: "mysite1.com.au"
2018/05/30 05:05:05 [crit] 766#766: *4 stat() "/var/www/html/mysite1/" failed (13: Permission denied), client: 192.168.0.5, server: mysite1.com.au, request: "GET / HTTP/1.1", host: "mysite1.com.au"
2018/05/30 05:05:05 [error] 766#766: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.0.5, server: mysite1.com.au, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "mysite1.com.au"
2018/05/30 05:05:05 [crit] 766#766: *4 connect() to unix:/tmp/php-cgi.socket failed (2: No such file or directory) while connecting to upstream, client: 192.168.0.5, server: mysite1.com.au, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/tmp/php-cgi.socket:", host: "mysite1.com.au"
Я добавил www-data
в группу vboxsf
. Нет разницы.
Проверка процесса nginx
показывает, что он запускается пользователем root
:
papa@wp:~$ ps -eo pid,comm,euser,supgrp | grep nginx
1888 nginx root root
1891 nginx www-data www-data,vboxsf
Используя предложение отсюда, я запустил:
sudo chown -R www-data:www-data /var/www/html
Но это не имело значения. Еще 502 Bad gateway
.
Запуск nginx -t
показывает:
papa@wp:~$ nginx -t
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2018/05/30 07:37:21 [warn] 1905#1905: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:1
2018/05/30 07:37:21 [emerg] 1905#1905: open() "/etc/nginx/sites-enabled/fca.conf" failed (13: Permission denied) in /etc/nginx/nginx.conf:62
nginx: configuration file /etc/nginx/nginx.conf test failed
Мой конфиг nginx
fca.conf
для этого сайта:
# Upstream to abstract backend connection(s) for php
upstream php {
server unix:/tmp/php-cgi.socket;
server 127.0.0.1:9000;
}
server {
## Your website name goes here.
server_name mysite1.com.au;
## Your only path reference.
root /var/www/html/mysite1;
## This should be in your http block and if it is, it's not needed here.
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location / {
# This is cool because no php is touched for static content.
# include the "?$args" part so non-default permalinks doesn't break when using query string
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
include fastcgi.conf;
fastcgi_intercept_errors on;
fastcgi_pass php;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
}