Removing unneeded file.
This commit is contained in:
parent
cc1ed20fc2
commit
ac4c0da9a9
2 changed files with 2 additions and 30 deletions
|
@ -10,15 +10,11 @@ env:
|
||||||
# - DB=pgsql
|
# - DB=pgsql
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- pwd
|
|
||||||
- sudo pwd
|
|
||||||
- sudo apt-get update > /dev/null
|
- sudo apt-get update > /dev/null
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pwd
|
- sudo chmod u+x tests/setup_test_env.sh
|
||||||
- sudo pwd
|
- sudo ./tests/setup_test_env.sh $TRAVIS_BUILD_DIR
|
||||||
- sudo chmod u+x test/setup_test_env.sh
|
|
||||||
- sudo ./test/setup_test_env.sh $TRAVIS_BUILD_DIR
|
|
||||||
|
|
||||||
# execute any number of scripts before the test run, custom env's are available as variables
|
# execute any number of scripts before the test run, custom env's are available as variables
|
||||||
before_script:
|
before_script:
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
worker_processes 1;
|
|
||||||
|
|
||||||
events {
|
|
||||||
worker_connections 1024;
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
include mime.types;
|
|
||||||
default_type application/octet-stream;
|
|
||||||
|
|
||||||
gzip on;
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
root /;
|
|
||||||
|
|
||||||
location ~ \.php($|/) {
|
|
||||||
fastcgi_pass 127.0.0.1:9000;
|
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
||||||
fastcgi_param PATH_INFO $fastcgi_script_name;
|
|
||||||
include fastcgi_params;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Reference in a new issue