From 688d94fb97e4de5b2eddb038e0bec366ecf5c0a6 Mon Sep 17 00:00:00 2001 From: Mike Ruckman Date: May 04 2017 14:32:45 +0000 Subject: Fix README and clean out old nginx config. --- diff --git a/README b/README index 9fd0f71..fa314ee 100644 --- a/README +++ b/README @@ -29,7 +29,7 @@ Set up a place for your tasks to reside: Place your task, or some production tasks [0] into that directory. These will be available for taskotron-docker to run. As an example: - git clone https://bitbucket.org/fedoraqa/task-rpmlint.git rpmlint + git clone https://bitbucket.org/fedoraqa/task-rpmlint.git --mirror rpmlint Once you've done that, go ahead and bring up the cluster. diff --git a/nginx/nginx.conf b/nginx/nginx.conf deleted file mode 100644 index 273b608..0000000 --- a/nginx/nginx.conf +++ /dev/null @@ -1,59 +0,0 @@ -# For more information on configuration, see: -# * Official English Documentation: http://nginx.org/en/docs/ -# * Official Russian Documentation: http://nginx.org/ru/docs/ - -user nginx; -worker_processes auto; -error_log /var/log/nginx/error.log; -pid /run/nginx.pid; - -events { - worker_connections 1024; -} - -http { - 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 /var/log/nginx/access.log main; - - sendfile on; - tcp_nopush on; - tcp_nodelay on; - keepalive_timeout 65; - types_hash_max_size 2048; - - include /etc/nginx/mime.types; - default_type application/octet-stream; - - # Load modular configuration files from the /etc/nginx/conf.d directory. - # See http://nginx.org/en/docs/ngx_core_module.html#include - # for more information. - include /etc/nginx/conf.d/*.conf; - - server { - listen 80 default_server; - listen [::]:80 default_server; - server_name _; - root /srv/taskotron/artifacts; - - # Load configuration files for the default server block. - include /etc/nginx/default.d/*.conf; - - autoindex on; - - location / { - } - # - # error_page 404 /404.html; - # location = /40x.html { - # } - # - # error_page 500 502 503 504 /50x.html; - # location = /50x.html { - # } - } -} - -daemon off;