server{
listen 80;
location / {
return 301 https://swight.live$request_uri;
}
location ~ /bot/ {
...
}
}
server {
listen 443 ssl;
location / {
...
}
server {
listen 80;
server_name swight.live www.swight.live;
location / {
return 301 https://swight.live$request_uri;
}
location ~ /vkbot/ {
root /home/www/vkbot/;
try_files $uri $uri/ /index.php?$args;
index index.php index.html;
location ~ \.php$ {
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~* \.(js|css|swf|ico|png|jpg|gif|jpeg|woff|woff2)$ {
add_header Cache-Control public;
expires 7d;
}
}
}
server {
listen 443 ssl;
server_name swight.live www.swight.live;
ssl_certificate /home/www/.crt/swight.live/certificate.crt;
ssl_certificate_key /home/www/.crt/swight.live/private.key;
location / {
root /home/www/swight.live;
try_files $uri $uri/ /index.php?$args;
index index.php index.html;
location ~ \.php$ {
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~* \.(js|css|swf|ico|png|jpg|gif|jpeg|woff|woff2)$ {
add_header Cache-Control public;
expires 7d;
}
}
}
root@v173836:/home/www# curl http://swight.live/vkbot
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.16.1 (Ubuntu)</center>
</body>
</html>
root@v173836:/home/www# nginx -v
nginx version: nginx/1.16.1 (Ubuntu)
server{
listen 80;
server_name swight.live www.swight.live;
location /a {
root /home/www/test;
index index.html;
}
location / {
root /home/www/test;
index index.html;
}
}
root@v173836:/home/www/test# curl http://swight.live/
hello
root@v173836:/home/www/test# curl http://swight.live/a
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.16.1 (Ubuntu)</center>
</body>
</html>
curl http://swight.live/a
location ~ /vkbot/ {
root /home/www/vkbot/;
try_files $uri $uri/ /index.php?$args;
index index.php index.html;
...
}
curl http://swight.live/vkbot/
nginx будет искать файлы в папке /home/www/vkbot/vkbot/. Не то что вы хотели, верно?location /vkbot/ {
root /home/www/;
try_files $uri $uri/ /vkbot/index.php?$args;
index index.php index.html;
...
}