![]() |
install | documentation | examples | articles | changelog 16.6.0 released on Mar 08, 2023 | articles updated on Mar 20, 2023
|
while on Fedora and other systems it might be at:sudo vi /etc/nginx/sites-enabled/default
sudo vi /etc/nginx/nginx.conf
- Step 2:location /<app path> { include /etc/nginx/fastcgi_params; fastcgi_pass unix:///var/lib/vv/<app name>/sock/sock; }
Note: you must not have any other URL resource that starts with "/<app path>" (such as for example "/<app path>.html" or "/<app path>_something" etc.) as the web server will attempt to pass them as a reverse proxy request, and they will likely not work. If you need to, you can change the application path to be different from "/<app path>", see request_URL.sudo systemctl restart nginx