Есть macOS. Установлен на нем Docker Desktop for Mac
Используется докер контейнер с nginx
Сайт зпустился отлично по адресу localhost/
Но мне необходимо сменить этот адрес на свой.
Захожу внутрь контейнера и там в файле
nano /opt/docker/etc/nginx/vhost.conf
Пишу
spoilerserver {
server_name crm.loc;
root /var/www/app/public;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param APP_X_SHOP $http_x_shop;
fastcgi_param APP_X_SESSION $http_x_session;
# Prevents URIs that include the front controller. This will 404:
# http://domain.tld/index.php/some-path
# Remove the internal directive to allow URIs like this
internal;
}
# return 404 for all other php files not matching the front controller
# this prevents access to other php files you don't want to be accessible.
location ~ \.php$ {
return 404;
}
error_log /docker.stderr;
access_log /docker.stdout;
}
Потом на локальной машине в файле /etc/hosts добавляю
127.0.0.1 crm.loc
Но это все не работает. Сайт продолжает работать в браузере через localhost/
При чем эти же манипуляции на убунте помогли решить мою задачу. А на маке - нет. Подскажите, как решить проблему?