I didn’t capture any huge annoying ads image, what you are seeing below is their normal ads which is ok for me. When any large size ads come up, it will cover 1/3 or sometimes even 1/2 of the contact screen. That is not acceptable for me. I understand software companies provide free software, they must have some sort of income to support themselves . But taking too much screen’s screen real estate is very annoying.
nginx.conf
user www-data; worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; events { worker_connections 768; # multi_accept on; } http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 10s; types_hash_max_size 2048; server_tokens off; server_names_hash_bucket_size 64; # server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; ## # SSL Settings ## ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # … Read more