Commit 39ae044b authored by Owain Jones's avatar Owain Jones
Browse files

changes to gliders.nginx.conf to allow access to more content in /var/gliders/static

parent 303f0a5a
......@@ -53,8 +53,8 @@ server {
alias /var/gliders/logs;
}
location /var/gliders/logs {
alias /var/gliders/logs;
location /static {
alias /var/gliders/static;
}
location @rewriteapp {
......@@ -112,8 +112,8 @@ server {
alias /var/gliders/logs;
}
location /var/gliders/logs {
alias /var/gliders/logs;
location /static {
alias /var/gliders/static;
}
location @rewriteapp {
......@@ -169,8 +169,8 @@ server {
alias /var/gliders/logs;
}
location /var/gliders/logs {
alias /var/gliders/logs;
location /static {
alias /var/gliders/static;
}
location @rewriteapp {
......
......@@ -61,6 +61,11 @@ cp php-d-fpm.ini /etc/php.d/fpm.ini
cp php-fpm-www.conf /etc/php-fpm.d/www.conf
systemctl enable php-fpm
# Install NodeJS, NPM, Bower
yum install nodejs npm
npm install -g bower
npm install -g grunt-cli
# As for the webserver -- either apache or nginx...
# nginx is nice and fast, apache gets better support from
# CentOS etc.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment