на свой вопрос сегодня.
Есть контейнер https://github.com/MilesChou/docker-phalcon/blob/master/7.4/fpm-alpine/Dockerfile
С установленным nginx и прописанными портами. При попытке открыть 127.0.0.1:8000 мне выкидывает 502 ошибочку
server {
listen 8080 default_server;
listen [::]:80 default_server;
index index.php;
root /var/www/public;
charset utf-8;
client_max_body_size 100M;
fastcgi_read_timeout 1800;
location ~ [^/]\.php(/|$) {
fastcgi_pass localhost:9000;
fastcgi_index /index.php;
include fastcgi_params;
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~ /\.ht {
deny all;
}
location / {
# Matches URLS $_GET['_url']
try_files $uri $uri/ /index.php?_url=$uri&$args;
log_not_found on;
access_log on;
}
# You may need this to prevent return 404 recursion.
location = /404.html {
internal;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
access_log off;
}
Вот конфиг
Есть идеи?
localhost detected
Обсуждают сегодня