Skip to content

A module allowing the nginx to use files embedded in a zip file

Notifications You must be signed in to change notification settings

youzee/nginx-unzip-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

What is this?

A nginx module enabling fetching of files that are stored in zipped archives.

Nginx configuration example

  • file_in_unzip_archivefile - points to the zipped file
  • file_in_unzip_extract - file to be extracted from the zipped file
  • file_in_unzip - flag activating the module
  location ~ "^([a-zA-Z0-9-/]+)/([a-zA-Z0-9-.]+)(Seg1-Frag\d+)$" {
    file_in_unzip_archivefile $document_root$1/$2;
    file_in_unzip_extract $2$3;
    file_in_unzip;
  }

About

A module allowing the nginx to use files embedded in a zip file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages