Hello I am using a tool purchased on codecanyon I followed ht instructions in this doc using cloud panel on a droplet and it did not work.
Help Docs: 66biolinks.com/docs/#nginx
These are the errors I am getting from cloud panel
Any help would be greatly appreciated as the seller is being very difficult with supporting their product.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
As far as I can tell you do have an extra location keyword on line 54 right before the if condition.
So this rule here is invalid:
location if (!-e $request_filename){ rewrite ^\/(.+)$ /index.php?altum=$1 last; }
You need to remove that line, and add the if statement inside your existing location / { ... } directive, eg:
location / {
if (!-e $request_filename){ rewrite ^\/(.+)$ /index.php?altum=$1 last; }
# Some other rules here
}
Hope that this helps!
If you still have any questions, feel free to share your complete Nginx server block here so I can advise you where exactly this needs to go.
Best,
Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
