Всем привет.
На сервере есть 2 папки:
/home/user/site1.com/
/home/user/api.site1.com/
В site1.com папке лежит index.html.
В api.site1.com лежит апи проект на laravel.
site1.com должен иметь возможность отправлять запросы на site1.com/api/*url и nginx должен перенаправить этот запрос на папку api.site1.com.
Вот набросал такой конфиг, но при открытии site1.com/api/countries выдает : No input file specified.
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name site1.com;
index index.html index.php;
location / {
root /home/user/site1.com;
try_files $uri $uri/ /index.html;
}
location ~ ^/api/(.*) {
root /home/user/api.site1.com/public;
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}