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.

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.
Hi @stephenlang91,
I can see you’ve configued both /media and /static to go to te same folder. Can I ask if there is a specific reason behind this? Usually, your configuration file should look like this :
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}
Can you try seting up your configuration file like so.
Please remember to change the line
root /var/www/html
with your actual path to your website so it looks like
root /path/to/website
Additionally, where it says
server_name _;
change it to match your domain name, like so
server_name example.com;
Where example.com is your domain.
Regards, KFSys