From b0ee3c8bb4ab34eb21b9696c3634f498ecff94a7 Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Tue, 3 Oct 2017 15:43:09 +0200 Subject: [PATCH] ADD Nginx Mainstream Test (Step 13) --- .dev-tools/_nginx_conf_backup/nginx13.conf | 117 +++++++++++++++++++++ .dev-tools/install-nginx-4.sh | 9 +- 2 files changed, 123 insertions(+), 3 deletions(-) create mode 100755 .dev-tools/_nginx_conf_backup/nginx13.conf diff --git a/.dev-tools/_nginx_conf_backup/nginx13.conf b/.dev-tools/_nginx_conf_backup/nginx13.conf new file mode 100755 index 000000000..29bc085f2 --- /dev/null +++ b/.dev-tools/_nginx_conf_backup/nginx13.conf @@ -0,0 +1,117 @@ + +#user nobody; +worker_processes 1; + +#error_log logs/error.log; +#error_log logs/error.log notice; +#error_log logs/error.log info; + +#pid logs/nginx.pid; + + +events { + worker_connections 1024; +} + + +http { + include mime.types; + default_type application/octet-stream; + + #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + # '$status $body_bytes_sent "$http_referer" ' + # '"$http_user_agent" "$http_x_forwarded_for"'; + + #access_log logs/access.log main; + + sendfile on; + #tcp_nopush on; + + #keepalive_timeout 0; + keepalive_timeout 65; + + #gzip on; + + server { + listen 80; + server_name localhost; + + #charset koi8-r; + + #access_log logs/host.access.log main; + + location / { + root html; + index index.html index.htm; + } + + #error_page 404 /404.html; + + # redirect server error pages to the static page /50x.html + # + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root html; + } + + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 + # + #location ~ \.php$ { + # proxy_pass http://127.0.0.1; + #} + + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 + # + #location ~ \.php$ { + # root html; + # fastcgi_pass 127.0.0.1:9000; + # fastcgi_index index.php; + # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + # include fastcgi_params; + #} + + # deny access to .htaccess files, if Apache's document root + # concurs with nginx's one + # + #location ~ /\.ht { + # deny all; + #} + } + + + # another virtual host using mix of IP-, name-, and port-based configuration + # + #server { + # listen 8000; + # listen somename:8080; + # server_name somename alias another.alias; + + # location / { + # root html; + # index index.html index.htm; + # } + #} + + + # HTTPS server + # + #server { + # listen 443 ssl; + # server_name localhost; + + # ssl_certificate cert.pem; + # ssl_certificate_key cert.key; + + # ssl_session_cache shared:SSL:1m; + # ssl_session_timeout 5m; + + # ssl_ciphers HIGH:!aNULL:!MD5; + # ssl_prefer_server_ciphers on; + + # location / { + # root html; + # index index.html index.htm; + # } + #} + +} diff --git a/.dev-tools/install-nginx-4.sh b/.dev-tools/install-nginx-4.sh index ce7e78e58..a07e396a9 100755 --- a/.dev-tools/install-nginx-4.sh +++ b/.dev-tools/install-nginx-4.sh @@ -53,11 +53,13 @@ #sudo apt-get -y autoremove sudo rm -rfv /etc/nginx/mybots.d/ sudo rm -rfv /etc/nginx/myconf.d/ -sudo rm /etc/nginx/conf.d/* -sudo rm /etc/nginx/bots.d/* +sudo rm /etc/nginx/conf.d/*.conf +sudo rm /etc/nginx/bots.d/*.conf sudo rm /etc/nginx/sites-available/default sudo rm /etc/nginx/nginx.conf ls -la /etc/nginx/ +sudo cp $TRAVIS_BUILD_DIR/.dev-tools/_nginx_conf_backup/nginx13.conf /etc/nginx/nginx.conf +ls -la /etc/nginx/ # ***************************** # Lets Install Mainstream Nginx @@ -67,10 +69,11 @@ mainstreamnginx=development sudo add-apt-repository -y ppa:nginx/$mainstreamnginx sudo apt-get update sudo apt-get install -y --assume-yes nginx-extras -#sudo apt-get -y dist-upgrade sudo nginx -V sudo nginx -t #sudo service nginx start +sudo /etc/init.d/nginx start +sudo /etc/init.d/nginx reload # Find where Nginx Mainstream Installed to and Find The Service or We Have to Enable it