How to enable Brotli compression in Nginx and Docker for Angular App
For Docker based Angular application I want to enable Brotli compression on Nginx for this I have added below commands to Dockerfile and turned brotli on in nginx/default.conf file. nginx/default.conf: server { brotli on; brotli_static on; listen 80; root /usr/share/nginx/html;…