Commit 3728f035 authored by Gliders User's avatar Gliders User
Browse files

removed gliders. constraint on development virtual host domain names

parent 635fcfe1
server { server {
listen 80; listen 80;
server_name apc.dev.gliders.*; server_name apc.dev.*;
root /home/gliders/code/APC-Admin; root /home/gliders/code/APC-Admin;
error_log /var/log/nginx/apc.error.log; error_log /var/log/nginx/apc.error.log;
......
server { server {
listen 80; listen 80;
server_name es.dev.gliders.*; server_name es.dev.*;
location / { location / {
proxy_pass http://127.0.0.1:9200; proxy_pass http://127.0.0.1:9200;
} }
......
server { server {
listen 80; listen 80;
server_name hhvm.dev.gliders.*; server_name hhvm.dev.*;
location / { location / {
fastcgi_pass 127.0.0.1:9001; fastcgi_pass 127.0.0.1:9001;
include fastcgi_params; include fastcgi_params;
......
...@@ -56,7 +56,7 @@ systemctl enable elasticsearch ...@@ -56,7 +56,7 @@ systemctl enable elasticsearch
yum install -y MySQL-python python-sqlalchemy yum install -y MySQL-python python-sqlalchemy
# Install PHP # Install PHP
yum install -y php php-fpm php-apc php-pdo php-mcrypt php-mbstring php-pecl-runkit yum install -y php php-fpm php-apc php-pdo php-mcrypt php-mbstring php-pecl-runkit phpmyadmin
cp php.ini /etc/php.ini cp php.ini /etc/php.ini
cp php-d-fpm.ini /etc/php.d/fpm.ini cp php-d-fpm.ini /etc/php.d/fpm.ini
cp php-fpm-www.conf /etc/php-fpm.d/www.conf cp php-fpm-www.conf /etc/php-fpm.d/www.conf
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
server { server {
listen 80; listen 80;
server_name phpci.dev.gliders.*; server_name phpci.dev.*;
root /home/gliders/code/phpci/public; root /home/gliders/code/phpci/public;
error_log /var/log/nginx/phpci.error.log; error_log /var/log/nginx/phpci.error.log;
......
# Configuration for phpMyAdmin -- set it up to use php-fpm etc. # Configuration for phpMyAdmin -- set it up to use php-fpm etc.
server { server {
listen 80; listen 80;
root /home/gliders/phpma; # root /home/gliders/phpma;
root /usr/share/phpMyAdmin;
index index.php index.html index.htm; index index.php index.html index.htm;
server_name phpma.dev.gliders.*; # update with actual hostname when we get it server_name phpma.dev.*; # update with actual hostname when we get it
location / { location / {
try_files $uri $uri/ /index.php; try_files $uri $uri/ /index.php;
......
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