Khuman Posted January 10, 2017 Report Share Posted January 10, 2017 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? Quote Link to comment Share on other sites More sharing options...
t_bergman Posted January 10, 2017 Report Share Posted January 10, 2017 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 Quote Link to comment Share on other sites More sharing options...
Moderators servetas Posted January 12, 2017 Moderators Report Share Posted January 12, 2017 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.