Имею следующий конфиг:
server {
listen 80;
listen [::]:80;
root /var/www/mysite/public;
index index.php index.html;
server_name mysite.ru
location / {
try_files $uri /index.php$is_args$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
}
Хочу чтобы по адресу api.mysite.ru открывался адрес mysite.ru/api/
Не могу настроить конфиг должным образом ниже пример как пытаюсь сделать, но он не работает:
server {
listen 80;
listen [::]:80;
root /var/www/mysite/public;
index index.php index.html;
server_name api.mysite.ru
location / {
try_files $uri /index.php?api/$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
}