<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <blockquote type="cite"
      cite="mid:45a488ea-9f92-5978-226e-b057f085e7bf@free.fr">
      <p>Hello,</p>
      <p>On my computer, I installed the Squid proxy for my children's
        Android smartphones.<br>
        Everything works well, except that the video call does not work
        for HANGOUTS and that the push notification does not work for
        SIGNAL and HANGOUTS (they must start the application to see the
        messages)</p>
      <p>Does anyone use Squid with these applications, how can I fix my
        problem?</p>
      <p>Here is my squid.conf :</p>
      <blockquote>
        <div class="codebox">
          <pre class="vscroll"><code>acl localnet src 192.168.x.x/24              # RFC 1918 local private network (LAN)

acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl SSL_ports port 4433 8443    # Signal Messenger
acl CONNECT method CONNECT

http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports

http_access allow localhost manager
http_access deny manager

http_access allow localnet
http_access allow localhost
http_reply_access allow localnet
http_reply_access allow localhost

acl ident_aware_hosts src 198.168.x.x/24
ident_lookup_access allow ident_aware_hosts
ident_lookup_access deny all

http_access deny all
http_reply_access deny all

http_port 3128

coredump_dir /var/cache/squid

refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320

cache_effective_user proxy
cache_effective_group proxy</code></pre>
        </div>
      </blockquote>
      <p>Thank you for your help.</p>
      <p>Regards.</p>
      <p>Bob.<br>
      </p>
    </blockquote>
  </body>
</html>