1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-02 15:06:23 -07:00

fix vagrant invalid file path error, update README

This commit is contained in:
Joshua Merrell 2017-08-12 16:46:00 -07:00
parent f9c7912a2c
commit 7ca552801b
5 changed files with 10 additions and 10 deletions

2
.gitignore vendored
View file

@ -3,3 +3,5 @@ config.cfg
gochan gochan
log/ log/
lib/ lib/
vagrant/.vagrant/
vagrant/ubuntu-xenial-16.04-cloudimg-console.log

View file

@ -1,17 +1,15 @@
# Gochan # Gochan
A multi-threaded imageboard server written in Go A multi-threaded imageboard server written in Go
http://gochan.org http://gochan.org
Installation ## Installation
------------
### Basic installation
Coming soon! Coming soon!
### For developers (using Vagrant)
Documentation 1. Install Vagrant and Virtualbox. Vagrant lets you create a virtual machine and run a custom setup/installation script to make installation easier and faster.
------------- 2. From the command line, cd into vagrant/ and run `vagrant up`
3. After it finishes installing the Ubuntu VM, follow the printed instructions.
Coming soon!

View file

@ -38,7 +38,7 @@ EOF123
service mysql restart & service mysql restart &
wait wait
rm -f /etc/nginx/sites-enabled/* /etc/nginx/sites-available/* rm -f /etc/nginx/sites-enabled/* /etc/nginx/sites-available/*
cp -f /vagrant/gochan.nginx /etc/nginx/sites-available/gochan.nginx cp -f /vagrant/gochan-fastcgi.nginx /etc/nginx/sites-available/gochan.nginx
ln -sf /etc/nginx/sites-available/gochan.nginx /etc/nginx/sites-enabled/ ln -sf /etc/nginx/sites-available/gochan.nginx /etc/nginx/sites-enabled/
# VirtualBox shared folders don't play nicely with sendfile. # VirtualBox shared folders don't play nicely with sendfile.