This repository was archived by the owner on Jul 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Server Setup
Jillian edited this page Jan 20, 2016
·
5 revisions
The initial development box is on a Digital Ocean Droplet with
- 512MB
- 1 Core
- 20GB SSD Disk
- 1TB Transfer
- CentOS 7
- NGINX
- SOLR Search
See full documentation with additional details here
- Enable EPEL Repository
sudo yum install epel-release - Install NGINX
sudo yum install nginx - Start NGINX
sudo systemctl start nginx
This is a low-powered machine for testing, adding swap will allow for better/faster results
- Create 2GB of Swap space
sudo fallocate -l 2G /swapfile
- Set swapfile to root read only
sudo chmod 600 /swapfile
- Set up the swap space
sudo mkswap /swapfile
- Enable swap on boot up
sudo vi /etc/fstab- Add the following to bottom of the file
/swapfile swap swap sw 0 0
Documentation - Design docs
SOLR
Test Server - Info about our test server
Test Server Setup - SOLR configuration tut
Misc.
Snippets - Useful snippets