Есть default конфиг(в нем прописан путь к лок. репозиторию с файлами):
server {
listen 10.10.10.10:80 default_server;
listen [::]:80 default_server;
server_name repo.zzz.ru www.repo.zzz.ru;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /media/repo/;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
autoindex on;
}
Создал еще отдельный конфиг:
GNU nano 3.2 /etc/nginx/sites-available/baikal
server {
listen 80;
server_name repo.zzz.ru/baikal;
root /var/www/baikal/html;
index index.php;
rewrite ^/.well-known/caldav /dav.php redirect;
rewrite ^/.well-known/carddav /dav.php redirect;
charset utf-8;
location ~ /(\.ht|Core|Specific|config) {
deny all;
return 404;
}
location ~ ^(.+\.php)(.*)$ {
try_files $fastcgi_script_name =404;
include /etc/nginx/fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
Перехожу по repo.zzz.ru - репо доступен перехожу по repo.zzz.ru/baikal - 404 Я понимаю что он ищет папку baikal в репо.Но как сделать что бы при обращении по адресу repo.zzz.ru/baikal он обращался к конфигу байкала а не к дефолт конфигу где прописан репо