phpVMS v3 on nginx+php-fpm

Hi!

I try startup phpVMS3 on my server with nginx and php-fpm. Afetr click “Start Here”, I always take 404 error. My nginx config:

server { listen XXX.XXX.XXX.XXX:80; server\_name v3.myVA.org; access\_log /var/log/nginx/v3.myVA.org.access.log; error\_log /var/log/nginx/v3.myVA.error.log debug; root /www/myVA.org; index index.html index.php; gzip\_static on; gzip on; gzip\_comp\_level 5; gzip\_types application/x-javascript application/javascript text/css image/jpeg image/png; location / { try\_files $uri $uri/ /index.php; } location ~\* ^.+\.(jpg|jpeg|gif|png|svg|swf|ico|js|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|xml)$ { expires max; } location ~ .php$ { fastcgi\_split\_path\_info ^(.+\.php)(/.+)$; include fastcgi\_params; fastcgi\_pass unix:/var/tmp/php-fpm.sock; fastcgi\_index index.php; fastcgi\_param SCRIPT\_FILENAME /www/myVA.org$fastcgi\_script\_name; fastcgi\_intercept\_errors on; } }

Many examples for nginx.conf for CodeIgniter framwork didn’t help.

Can anybody help me?

PhpVMS v3 isn’t out even in beta format yet, this forum is also for v2. I would wait until SimPilot releases a stable beta and the  forum section for v3 opens up.

2 Likes

That’s correct. phpVMS-3 has not been released yet although there are some commits in David’s github. I believe that we should wait until David announces anything.