Hello All. So I created a Digital Ocean droplet using Laravel Forge and linked it to a github repo…added a domain name, and setup SSL . As the project was wrapped up I wanted to transfer ownership of the droplet to my client so I followed instructions here. After doing so the IP address used by the new droplet throws a 404 Not found | nginx/1.17.3. I’m suspicious this might have something to do with the SSL certificate? Any help is appreciated.
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi there @yodergilbert1,
I believe that you have a separate Nginx server block for your domain name. To check that SSH to the new Droplet and then run the following command:
In that folder, you will see all of your enabled Nginx server blocks.
What you could do is disable the default config so that you are left only with the actual Nginx server block for your Laravel application.
To disable the default config you can use the following:
And then restart Nginx:
Hope that this helps. Regards, Bobby