purge deprecate docker swarm documentation

documentation license moved to CC-BY-4.0
This commit is contained in:
Harshavardhana
2021-05-10 09:49:53 -07:00
parent c03a06cca8
commit 477cd85bef
6 changed files with 377 additions and 564 deletions

View File

@@ -1,16 +1,13 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
worker_connections 4096;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
@@ -20,14 +17,9 @@ http {
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
# include /etc/nginx/conf.d/*.conf;
upstream minio {
@@ -42,13 +34,13 @@ http {
listen [::]:9000;
server_name localhost;
# To allow special characters in headers
ignore_invalid_headers off;
# Allow any size file to be uploaded.
# Set to a value such as 1000m; to restrict file size to a specific value
client_max_body_size 0;
# To disable buffering
proxy_buffering off;
# To allow special characters in headers
ignore_invalid_headers off;
# Allow any size file to be uploaded.
# Set to a value such as 1000m; to restrict file size to a specific value
client_max_body_size 0;
# To disable buffering
proxy_buffering off;
location / {
proxy_set_header Host $http_host;