RoadRunner with NGINX
Nginx configuration
FastCGI
version: "3"
http:
fcgi:
address: tcp://0.0.0.0:9000server {
listen 80;
listen [::]:80;
server_name _;
location / {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
access_log off;
error_log off;
}
}Proxy
WebSocket proxy
Docker
Dockerfile
RoadRunner configuration
PHP Worker
Docker Compose
Last updated