如何在universal angular和nginx中启用gzip文本压缩?

如何在universal angular和nginx中启用gzip文本压缩?,angular,nginx,gzip,angular-universal,Angular,Nginx,Gzip,Angular Universal,有人知道如何在nginx和universalangular中启用gzip文本压缩吗?我不知道从哪里开始做它gzip与Angular无关,它是服务器的事情。 在nginx中,您可以通过打开gzip来启用它 如下图所示: server { gzip on; gzip_types text/plain application/xml; gzip_proxied no-cache no-store private expired auth; gzip_mi

有人知道如何在nginx和universalangular中启用gzip文本压缩吗?我不知道从哪里开始做它

gzip与Angular无关,它是服务器的事情。 在nginx中,您可以通过打开gzip来启用它

如下图所示:

server {
    gzip on;
    gzip_types      text/plain application/xml;
    gzip_proxied    no-cache no-store private expired auth;
    gzip_min_length 1000;
    ...
}
有关更多详细信息,请参阅下面的文章:


gzip与Angular无关,它是一个服务器。 在nginx中,您可以通过打开gzip来启用它

如下图所示:

server {
    gzip on;
    gzip_types      text/plain application/xml;
    gzip_proxied    no-cache no-store private expired auth;
    gzip_min_length 1000;
    ...
}
有关更多详细信息,请参阅下面的文章:


第一步是编辑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
完成上述配置更改后,重新启动或重新加载服务器,您现在将使用gzip压缩服务站点资产

/etc/init.d/nginx reload


第一步是编辑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
完成上述配置更改后,重新启动或重新加载服务器,您现在将使用gzip压缩服务站点资产

/etc/init.d/nginx reload


非常感谢你的问候非常感谢你的问候