Last active
August 29, 2015 14:02
-
-
Save rbj325/01abc3bcab06bf4d1ee3 to your computer and use it in GitHub Desktop.
Owin via Edge.js server setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ubuntu 12.04 x64 | |
https://www.digitalocean.com/community/articles/how-to-add-and-delete-users-on-ubuntu-12-04-and-centos-6 | |
https://www.digitalocean.com/community/articles/how-to-set-up-vsftpd-on-ubuntu-12-04 | |
sudo apt-get unzip | |
sudo bash -c 'bash <(wget -qO- https://raw.githubusercontent.com/tjanczuk/edge/master/tools/ubuntu_12.04_clean_install.sh)' | |
sudo adduser -d /home/testuser -m testuser | |
sudo /usr/sbin/visudo | |
# User privilege specification | |
root ALL=(ALL:ALL) ALL | |
newuser ALL=(ALL:ALL) ALL | |
# | |
sudo apt-get vsftpd | |
sudo nano /etc/vsftpd.conf | |
# | |
anonymous_enable=NO | |
local_enable=YES | |
write_enable=YES | |
chroot_local_user=YES | |
# | |
mkdir /home/username/files | |
chown root:root /home/username | |
sudo service vsftpd restart | |
npm install -g grunt-cli | |
http://www.asp.net/web-api/overview/hosting-aspnet-web-api/use-owin-to-self-host-web-api | |
https://github.com/bbaia/connect-owin | |
https://github.com/tjanczuk/edge#building-on-ubuntu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment