如何在通用角度和 nginx 中启用 gzip 文本压缩?

Ale*_*fre 1 gzip nginx angular-universal angular

有谁知道如何在 nginx 和通用角度中启用 gzip 文本压缩?我不知道从哪里开始做

小智 6

第一步是编辑 nginx.conf 文件,在大多数发行版中,该文件可以位于/etc/nginx/nginx.conf/usr/local/nginx/conf/nginx.conf

使用您喜欢的编辑器打开 nginx.conf 文件。可以看到已经有关于Gzip的设置块了;您可以随时修改这些并取消注释行,如下所示:

# enable gzip compression

# Turns on/off the gzip compression.
gzip on;

# Compression level (1-9).
# 5 is a perfect compromise between size and cpu usage, offering about
# 75% reduction for most ascii files (almost identical to level 9).
gzip_comp_level    5;

# The minimum size file to compress the files.
gzip_min_length  1100;

# Set the buffer size of gzip, 4 32k is good enough for almost everybody.
gzip_buffers  4 32k;

# Compress data even for clients that are connecting to us via proxies,
# identified by the "Via" header (required for CloudFront).
gzip_proxied       any;

# This directive let you specify which file types should be compressed, in this case plain text, js files, xml and #css.
gzip_types    text/plain application/x-javascript text/xml text/css;

# Enables response header of “Vary: Accept-Encoding
gzip_vary on;

# end gzip configuration
Run Code Online (Sandbox Code Playgroud)

完成上述配置更改后,重新启动或重新加载您的服务器,您现在将使用 gzip 压缩提供站点资产。

/etc/init.d/nginx reload
Run Code Online (Sandbox Code Playgroud)

或者

sudo service nginx restart
Run Code Online (Sandbox Code Playgroud)


Nad*_*lta 5

gzip 与 Angular 无关,它是服务器的事情。在 nginx 中,您可以通过设置启用它gzip on;

像下面这样:

server {
    gzip on;
    gzip_types      text/plain application/xml;
    gzip_proxied    no-cache no-store private expired auth;
    gzip_min_length 1000;
    ...
}
Run Code Online (Sandbox Code Playgroud)

有关更多详细信息,请参阅下面的文章:

https://docs.nginx.com/nginx/admin-guide/web-server/compression/