Skip to content

Instantly share code, notes, and snippets.

View fenix011's full-sized avatar
🏠
Working from home

Librebits fenix011

🏠
Working from home
View GitHub Profile
@kevinSuttle
kevinSuttle / ghost.conf
Last active July 17, 2016 18:53
Ghost + Nginx + letsencrypt + keybase.io + Digital Ocean + DNSimple
# /etc/nginx/sites-enabled/ghost
server {
root /usr/share/nginx/html;
index index.html index.htm;
listen 443 ssl;
server_name kevinsuttle.com www.kevinsuttle.com;
ssl_certificate /etc/letsencrypt/live/kevinsuttle.com/fullchain.pem;
@arkadijs
arkadijs / install.md
Last active January 6, 2022 17:10
GitLab in LXC on Ubuntu and openSUSE

Ubuntu host and container

Install LXC:

apt-get install linux-hwe-generic # update to 3.13 on Precise
apt-add-repository ppa:ubuntu-lxc/stable
apt-get update
apt-get install lxc lxc-templates cgmanager cgroup-lite
reboot