Bind9 dns server by docker-compose
Clone repo git clone https://github.com/galushkoav/bind9.git Build docker-compose build Start docker-compose up -d Configs mounted from configs/bind […]
Clone repo git clone https://github.com/galushkoav/bind9.git Build docker-compose build Start docker-compose up -d Configs mounted from configs/bind […]
Deploy openshift 3.7 via ansible on fedora-atomic 27 with calico network Requements(node configuration) – 3 node fedora atomic 27 – debian node with python3,docker,docker-compose packages – ssh-login without password on all nodes from deploying node(from – dns records(by dns server or wildcard domains ) – python3 on ansible-deploy-node Node settings – ansible,dns node 10.12.4.37 – […]
Читать дальше… from Deploy openshift 3.7 via ansible on fedora-atomic 27 with calico network
#!/usr/bin/env bash # names of latest versions of each package export NGINX_VERSION=1.13.5 export TENGINE_VERSION=2.2.0 export VERSION_PCRE=pcre-8.41 export VERSION_LIBRESSL=libressl-2.6.1 export VERSION_NGINX=nginx-$NGINX_VERSION export VERSION_TENGINE=tengine-$TENGINE_VERSION #export NPS_VERSION=1.9.32.10 #export VERSION_PAGESPEED=v${NPS_VERSION}-beta # URLs to the source directories export SOURCE_LIBRESSL=http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/ export SOURCE_PCRE=https://ftp.pcre.org/pub/pcre/ export SOURCE_NGINX=http://nginx.org/download/ export SOURCE_TENGINE=http://tengine.taobao.org/download/ #export SOURCE_RTMP=https://github.com/arut/nginx-rtmp-module.git #export SOURCE_PAGESPEED=https://github.com/pagespeed/ngx_pagespeed/archive/ # clean out any files from previous runs of this script […]
Читать дальше… from Build TENGINE latest on debin/ubuntu script
Tune limits /etc/security/limits.conf * – nofile 999999 * soft nofile 1000000 * hard nofile 1000000 root soft nofile 1000000 root hard nofile 1000000 root soft nproc unlimited root hard nproc unlimited ulimit -a Tune sysctl vm.swappiness=1 vm.max_map_count=262144 net.ipv4.tcp_wmem = 4096 65536 16777216 net.ipv4.tcp_wmem = 4096 262144 4194304 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_tw_reuse = 0 #net.ipv4.tcp_tw_recycle = […]