├── .gitignore ├── LICENSE ├── README.md ├── files └── pcsxr │ └── SCPH1001.BIN ├── fonts └── inconsolata │ ├── Inconsolata.otf │ └── Inconsolata.txt ├── notes └── crack-word-password.md ├── os ├── etc │ ├── environment │ ├── fstab │ ├── nginx │ │ ├── sites-available │ │ │ ├── host.example.conf │ │ │ └── ssl-host.example.conf │ │ └── snippets │ │ │ ├── cache-static.conf │ │ │ ├── fastcgi-php.conf │ │ │ ├── gzip.conf │ │ │ ├── headers-https.conf │ │ │ ├── headers.conf │ │ │ ├── snakeoil.conf │ │ │ └── ssl.conf │ ├── profile.d │ │ └── ps.sh │ └── samba │ │ └── smb.conf └── home │ ├── .bashrc │ ├── .config │ └── autostart │ │ ├── dropbox.desktop │ │ ├── slack.desktop │ │ └── telegramdesktop.desktop │ ├── .exports │ ├── .gitattributes │ ├── .gitconfig │ ├── .gitignore │ ├── .vimrc │ ├── compiz │ └── Longish Profile.profile │ └── scripts │ ├── deploy.sh │ └── php-fpm-cli.sh └── server ├── ansible ├── vpn │ ├── README.md │ ├── hosts.ini │ └── pptp.yml └── webserver │ ├── backend │ ├── README.md │ ├── backend.yml │ ├── hosts.ini │ ├── nginx │ │ ├── site-ssl.conf.j2 │ │ ├── site.conf.j2 │ │ └── snippets │ │ │ ├── cache-static.conf │ │ │ ├── gzip.conf │ │ │ ├── headers-https.conf │ │ │ ├── headers.conf │ │ │ └── ssl.conf │ └── php │ │ └── 00-default.ini.j2 │ └── frontend │ └── frontend.yml └── ntpdate /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.retry -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/README.md -------------------------------------------------------------------------------- /files/pcsxr/SCPH1001.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/files/pcsxr/SCPH1001.BIN -------------------------------------------------------------------------------- /fonts/inconsolata/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/fonts/inconsolata/Inconsolata.otf -------------------------------------------------------------------------------- /fonts/inconsolata/Inconsolata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/fonts/inconsolata/Inconsolata.txt -------------------------------------------------------------------------------- /notes/crack-word-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/notes/crack-word-password.md -------------------------------------------------------------------------------- /os/etc/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/environment -------------------------------------------------------------------------------- /os/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/fstab -------------------------------------------------------------------------------- /os/etc/nginx/sites-available/host.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/sites-available/host.example.conf -------------------------------------------------------------------------------- /os/etc/nginx/sites-available/ssl-host.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/sites-available/ssl-host.example.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/cache-static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/cache-static.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/fastcgi-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/fastcgi-php.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/gzip.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/headers-https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/headers-https.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/headers.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/snakeoil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/snakeoil.conf -------------------------------------------------------------------------------- /os/etc/nginx/snippets/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/nginx/snippets/ssl.conf -------------------------------------------------------------------------------- /os/etc/profile.d/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/profile.d/ps.sh -------------------------------------------------------------------------------- /os/etc/samba/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/etc/samba/smb.conf -------------------------------------------------------------------------------- /os/home/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.bashrc -------------------------------------------------------------------------------- /os/home/.config/autostart/dropbox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.config/autostart/dropbox.desktop -------------------------------------------------------------------------------- /os/home/.config/autostart/slack.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.config/autostart/slack.desktop -------------------------------------------------------------------------------- /os/home/.config/autostart/telegramdesktop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.config/autostart/telegramdesktop.desktop -------------------------------------------------------------------------------- /os/home/.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.exports -------------------------------------------------------------------------------- /os/home/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.gitattributes -------------------------------------------------------------------------------- /os/home/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.gitconfig -------------------------------------------------------------------------------- /os/home/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.gitignore -------------------------------------------------------------------------------- /os/home/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/.vimrc -------------------------------------------------------------------------------- /os/home/compiz/Longish Profile.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/compiz/Longish Profile.profile -------------------------------------------------------------------------------- /os/home/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/scripts/deploy.sh -------------------------------------------------------------------------------- /os/home/scripts/php-fpm-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/os/home/scripts/php-fpm-cli.sh -------------------------------------------------------------------------------- /server/ansible/vpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/vpn/README.md -------------------------------------------------------------------------------- /server/ansible/vpn/hosts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/vpn/hosts.ini -------------------------------------------------------------------------------- /server/ansible/vpn/pptp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/vpn/pptp.yml -------------------------------------------------------------------------------- /server/ansible/webserver/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/README.md -------------------------------------------------------------------------------- /server/ansible/webserver/backend/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/backend.yml -------------------------------------------------------------------------------- /server/ansible/webserver/backend/hosts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/hosts.ini -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/site-ssl.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/site-ssl.conf.j2 -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/site.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/site.conf.j2 -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/snippets/cache-static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/snippets/cache-static.conf -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/snippets/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/snippets/gzip.conf -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/snippets/headers-https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/snippets/headers-https.conf -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/snippets/headers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/snippets/headers.conf -------------------------------------------------------------------------------- /server/ansible/webserver/backend/nginx/snippets/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/nginx/snippets/ssl.conf -------------------------------------------------------------------------------- /server/ansible/webserver/backend/php/00-default.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/backend/php/00-default.ini.j2 -------------------------------------------------------------------------------- /server/ansible/webserver/frontend/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akalongman/ubuntu-configuration/HEAD/server/ansible/webserver/frontend/frontend.yml -------------------------------------------------------------------------------- /server/ntpdate: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ntpdate ntp.ubuntu.com 3 | --------------------------------------------------------------------------------