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!
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.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.