Social Icons

Ana Bujan

Making Network tab work in a self hosted Ghost

For anyone who is self hosting ghost blog behind nginx, this is the configuration that worked for me: location ^~ /.ghost/activitypub/ { proxy_pass https://ap.ghost.org; proxy_http_version 1.1; proxy_ssl_server_name...

2 min read

Secure configuration in GitHub using SOPS

Usual problem with software development, since I started working, is handling configuration and keeping secrets. For managing secrets I have tried AWS secret manager and Google secret manager. I even tried keeping configuration in "plain...