Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Owain Jones
gliders-webserver
Commits
3728f035
Commit
3728f035
authored
9 years ago
by
Gliders User
Browse files
Options
Download
Email Patches
Plain Diff
removed gliders. constraint on development virtual host domain names
parent
635fcfe1
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
7 deletions
+8
-7
apc.nginx.conf
apc.nginx.conf
+1
-1
elasticsearch.nginx.conf
elasticsearch.nginx.conf
+1
-1
hhvm.nginx.conf
hhvm.nginx.conf
+1
-1
install.sh
install.sh
+1
-1
phpci.nginx.conf
phpci.nginx.conf
+1
-1
phpmyadmin.nginx.conf
phpmyadmin.nginx.conf
+3
-2
No files found.
apc.nginx.conf
View file @
3728f035
server
{
listen
80
;
server_name
apc
.
dev
.
gliders
.
*;
server_name
apc
.
dev
.*;
root
/
home
/
gliders
/
code
/
APC
-
Admin
;
error_log
/
var
/
log
/
nginx
/
apc
.
error
.
log
;
...
...
This diff is collapsed.
Click to expand it.
elasticsearch.nginx.conf
View file @
3728f035
server
{
listen
80
;
server_name
es
.
dev
.
gliders
.
*;
server_name
es
.
dev
.*;
location
/ {
proxy_pass
http
://
127
.
0
.
0
.
1
:
9200
;
}
...
...
This diff is collapsed.
Click to expand it.
hhvm.nginx.conf
View file @
3728f035
server
{
listen
80
;
server_name
hhvm
.
dev
.
gliders
.
*;
server_name
hhvm
.
dev
.*;
location
/ {
fastcgi_pass
127
.
0
.
0
.
1
:
9001
;
include
fastcgi_params
;
...
...
This diff is collapsed.
Click to expand it.
install.sh
View file @
3728f035
...
...
@@ -56,7 +56,7 @@ systemctl enable elasticsearch
yum
install
-y
MySQL-python python-sqlalchemy
# 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-d-fpm.ini /etc/php.d/fpm.ini
cp
php-fpm-www.conf /etc/php-fpm.d/www.conf
...
...
This diff is collapsed.
Click to expand it.
phpci.nginx.conf
View file @
3728f035
...
...
@@ -7,7 +7,7 @@
server
{
listen
80
;
server_name
phpci
.
dev
.
gliders
.
*;
server_name
phpci
.
dev
.*;
root
/
home
/
gliders
/
code
/
phpci
/
public
;
error_log
/
var
/
log
/
nginx
/
phpci
.
error
.
log
;
...
...
This diff is collapsed.
Click to expand it.
phpmyadmin.nginx.conf
View file @
3728f035
# Configuration for phpMyAdmin -- set it up to use php-fpm etc.
server
{
listen
80
;
root
/
home
/
gliders
/
phpma
;
# root /home/gliders/phpma;
root
/
usr
/
share
/
phpMyAdmin
;
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
/ {
try_files
$
uri
$
uri
/ /
index
.
php
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment