Skip to content

Instantly share code, notes, and snippets.

View dohvis's full-sized avatar
📝

Kim Dohyeon dohvis

📝
View GitHub Profile
@dohvis
dohvis / install-uwsgi-nginx.sh
Last active July 22, 2017 18:18 — forked from puilp0502/install-uwsgi-nginx.sh
Install uWSGI and nginx
#!/bin/bash
# uWSGI & nginx installation script
# Created at 2017-06-27 by Frank Yang (https://github.com/puilp0502)
# Tested on Ubuntu Server 16.04 LTS
# Check if user is root
if [[ $UID -ne '0' ]]; then
echo "This script needs to be run as root; exiting..."
exit 0
atom settings