EVOLUTION-MANAGER
Edit File: nginx-alt.conf
server { listen 80; server_name localhost; root /var/www/html/ci; autoindex on; index index.php; location / { try_files $uri $uri/ /index.php; location = /index.php { fastcgi_pass 127.0.0.1:6969; fastcgi_param SCRIPT_FILENAME /var/www/html/ci$fastcgi_script_name; include fastcgi_params; } } location ~ \.php$ { return 444; } }