diff --git a/README.md b/README.md index 2a87bff..1f2da4e 100644 --- a/README.md +++ b/README.md @@ -83,8 +83,9 @@ On ubuntu < 22.04 and Debian < 12 the GLIBC version is incompatible with the ``` ### Ansible On Debian 11 the default version of `ansible` is 2.10.08 which fails to extract binaries for TUSd. -- workaround: - - `sudo vim /etc/apt/sources.list` add this line : `deb http://ppa.launchpad.net/ansible/ansible/ubuntu focal main` +- workaround: + - because of Puppet, we need to create dedicated sources.list file for ansible + - `sudo vim /etc/apt/sources.list.d/ansible_ubuntu_focal_main.list` add this line : `deb http://ppa.launchpad.net/ansible/ansible/ubuntu focal main` - then `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367` - followed by `sudo apt-get update` and `sudo apt-get install ansible -y` - Note that you might need to `sudo apt remove ansible` `sudo apt autoremove` before you try to install ansible. @@ -102,7 +103,7 @@ wget http://nginx.org/download/nginx-1.24.0.tar.gz && tar -xzf nginx-1.24.0.tar.gz && cd nginx-1.24.0/ && git clone https://github.com/hongzhidao/nginx-upload-module.git && -sudo apt-get install -y libpcre3 libpcre3-dev libssl-dev && +sudo apt-get install -y libpcre3 libpcre3-dev libssl-dev zlib1g-dev && ./configure --user=nginx --group=nginx --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --sbin-path=/usr/sbin/nginx --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-compat --with-debug --with-pcre-jit --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_sub_module --add-module=nginx-upload-module && make && make install ```