Hosting your Own Videos on Ghost

Ghost blog framework works well for hosting videos on YouTube.com and Vimeo.com. However, if you are like me and prefer to host your own videos follow the steps below. It's actually pretty easy. Edit your Nginx configuration. sudo vi /etc/nginx/sites-enabled/site.conf Add the following to your server configuration. location ~ /videos { root /var/www/ghost; } The whole file should look simliar to this. server { listen 443 [Read More]