diff --git a/.refresh_server.yml b/.refresh_server.yml new file mode 100644 index 0000000..a4ad84c --- /dev/null +++ b/.refresh_server.yml @@ -0,0 +1,17 @@ +--- +- hosts: webservers + remote_user: root + + tasks: + - name: fetch latest from github repo + git: + repo: git@github.com:rushilwiz/brancher.git + version: master + dest: /var/www/brancher.me/html + accept_hostkey: yes + key_file: ~/.ssh/brancher_rsa + + - name: restart apache2 + service: + name: apache2 + state: restarted diff --git a/404/index.html b/404/index.html new file mode 100755 index 0000000..d9c26d9 --- /dev/null +++ b/404/index.html @@ -0,0 +1,14 @@ + + + + Page Not Found + + + + +

404: page not found

+

it's dangerous to go alone!
take this!

+ +

if you feel there's been a mistake, feel free to contact me here

+ + diff --git a/404/style.css b/404/style.css new file mode 100755 index 0000000..74693b8 --- /dev/null +++ b/404/style.css @@ -0,0 +1,36 @@ +* { + color: #fff; +} + +body { + background-color: #000; +} + +.header { + left: 50%; + transform: translateX(-50%) rotate(180deg); + font-family: monospace; + font-weight: 200; + font-size: 9vh; +} + +.desc { + position: relative; + font-family: 'Press Start 2P', monospace; + text-transform: uppercase; + line-height: 25px; + text-align: center; + left: 50%; + transform: translateX(-50%); +} + +.foot { + margin-top: 200px; + font-family: monospace; +} + +img { + position: relative; + left: 50%; + transform: translateX(-50%); +} diff --git a/404/sword.png b/404/sword.png new file mode 100755 index 0000000..d2ac35e Binary files /dev/null and b/404/sword.png differ