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.
You could try setting up a PHP server with tasksel and create an image folder and serv files through there. https://gist.github.com/nahtnam/8092251 Im not sure it would work though.
Edit it the file “/etc/nginx/conf.d/default.conf” and add a new location block so that it looks like: <br> <br><pre> <br>server { <br> listen 80; <br> server_name my-ghost-blog.com ; <br> <br> client_max_body_size 10M; <br> <br> location / { <br> proxy_pass http://localhost:2368/; <br> proxy_set_header Host $host; <br> proxy_buffering off; <br> } <br> <br> location /files { <br> root /var/www; <br> } <br>} <br></pre> <br> <br>Then create a directory named “/var/www/files” Now any files that you put in that directory will be available at: http://yourdomain.com/files/yourfile.ext