У меня есть VPS, размещенный на Vultr, и я ломаю голову вокруг него в течение последних 12 часов.Проблема в том, что я пытаюсь настроить поддомен, но нигде не могу найти стандартную конфигурацию.У большинства блогов или вопросов, связанных с stackoverflow, есть корневая папка по адресу / var / www.У того, который я использую, корневой каталог настроен по адресу usr / share / nginx / html
Кроме того, в файле конфигурации в etc / nginx указано следующее
Пример файла vhost LEMP из VULTR.Файл NGINX по умолчанию находится в /var/default-conf/nginx/conf.d
Файл conf.d в /var/default-conf/nginx/conf.d имеет следующий код
server {
listen 80;
server_name domainname.com;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.php index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
server {
listen 80;
server_name subdomain.domainname.com;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html/subdirectory;
index index.php index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
Проблема в том, что даже если я получаю доступ к поддомену, он показывает сайт в корневой папке.Мне удалось настроить сертификат SSL как для основного домена, так и для дополнительного домена.Но поддомен не забирает файл из папки.
Любая помощь будет принята с благодарностью.