├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── akamai ├── ngx_http_secure_token_akamai.c ├── ngx_http_secure_token_akamai.h └── ngx_http_secure_token_akamai_commands.h ├── broadpeak ├── ngx_http_secure_token_broadpeak.c ├── ngx_http_secure_token_broadpeak.h └── ngx_http_secure_token_broadpeak_commands.h ├── cdnvideo ├── ngx_http_secure_token_cdnvideo.c ├── ngx_http_secure_token_cdnvideo.h └── ngx_http_secure_token_cdnvideo_commands.h ├── chinacache ├── ngx_http_secure_token_chinacache.c ├── ngx_http_secure_token_chinacache.h └── ngx_http_secure_token_chinacache_commands.h ├── cht ├── ngx_http_secure_token_cht.c ├── ngx_http_secure_token_cht.h └── ngx_http_secure_token_cht_commands.h ├── cloudfront ├── ngx_http_secure_token_cloudfront.c ├── ngx_http_secure_token_cloudfront.h └── ngx_http_secure_token_cloudfront_commands.h ├── config ├── iijpta ├── ngx_http_secure_token_iijpta.c ├── ngx_http_secure_token_iijpta.h └── ngx_http_secure_token_iijpta_commands.h ├── ngx_http_secure_token_conf.h ├── ngx_http_secure_token_encrypt_uri.c ├── ngx_http_secure_token_encrypt_uri.h ├── ngx_http_secure_token_filter_module.c ├── ngx_http_secure_token_filter_module.h ├── ngx_http_secure_token_m3u8.c ├── ngx_http_secure_token_m3u8.h ├── ngx_http_secure_token_processor_base.c ├── ngx_http_secure_token_processor_base.h ├── ngx_http_secure_token_utils.c ├── ngx_http_secure_token_utils.h ├── ngx_http_secure_token_xml.c ├── ngx_http_secure_token_xml.h ├── scripts ├── encryptUrl.php └── encryptUrl.py └── travis_build.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/README.md -------------------------------------------------------------------------------- /akamai/ngx_http_secure_token_akamai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/akamai/ngx_http_secure_token_akamai.c -------------------------------------------------------------------------------- /akamai/ngx_http_secure_token_akamai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/akamai/ngx_http_secure_token_akamai.h -------------------------------------------------------------------------------- /akamai/ngx_http_secure_token_akamai_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/akamai/ngx_http_secure_token_akamai_commands.h -------------------------------------------------------------------------------- /broadpeak/ngx_http_secure_token_broadpeak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/broadpeak/ngx_http_secure_token_broadpeak.c -------------------------------------------------------------------------------- /broadpeak/ngx_http_secure_token_broadpeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/broadpeak/ngx_http_secure_token_broadpeak.h -------------------------------------------------------------------------------- /broadpeak/ngx_http_secure_token_broadpeak_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/broadpeak/ngx_http_secure_token_broadpeak_commands.h -------------------------------------------------------------------------------- /cdnvideo/ngx_http_secure_token_cdnvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cdnvideo/ngx_http_secure_token_cdnvideo.c -------------------------------------------------------------------------------- /cdnvideo/ngx_http_secure_token_cdnvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cdnvideo/ngx_http_secure_token_cdnvideo.h -------------------------------------------------------------------------------- /cdnvideo/ngx_http_secure_token_cdnvideo_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cdnvideo/ngx_http_secure_token_cdnvideo_commands.h -------------------------------------------------------------------------------- /chinacache/ngx_http_secure_token_chinacache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/chinacache/ngx_http_secure_token_chinacache.c -------------------------------------------------------------------------------- /chinacache/ngx_http_secure_token_chinacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/chinacache/ngx_http_secure_token_chinacache.h -------------------------------------------------------------------------------- /chinacache/ngx_http_secure_token_chinacache_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/chinacache/ngx_http_secure_token_chinacache_commands.h -------------------------------------------------------------------------------- /cht/ngx_http_secure_token_cht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cht/ngx_http_secure_token_cht.c -------------------------------------------------------------------------------- /cht/ngx_http_secure_token_cht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cht/ngx_http_secure_token_cht.h -------------------------------------------------------------------------------- /cht/ngx_http_secure_token_cht_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cht/ngx_http_secure_token_cht_commands.h -------------------------------------------------------------------------------- /cloudfront/ngx_http_secure_token_cloudfront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cloudfront/ngx_http_secure_token_cloudfront.c -------------------------------------------------------------------------------- /cloudfront/ngx_http_secure_token_cloudfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cloudfront/ngx_http_secure_token_cloudfront.h -------------------------------------------------------------------------------- /cloudfront/ngx_http_secure_token_cloudfront_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/cloudfront/ngx_http_secure_token_cloudfront_commands.h -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/config -------------------------------------------------------------------------------- /iijpta/ngx_http_secure_token_iijpta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/iijpta/ngx_http_secure_token_iijpta.c -------------------------------------------------------------------------------- /iijpta/ngx_http_secure_token_iijpta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/iijpta/ngx_http_secure_token_iijpta.h -------------------------------------------------------------------------------- /iijpta/ngx_http_secure_token_iijpta_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/iijpta/ngx_http_secure_token_iijpta_commands.h -------------------------------------------------------------------------------- /ngx_http_secure_token_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_conf.h -------------------------------------------------------------------------------- /ngx_http_secure_token_encrypt_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_encrypt_uri.c -------------------------------------------------------------------------------- /ngx_http_secure_token_encrypt_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_encrypt_uri.h -------------------------------------------------------------------------------- /ngx_http_secure_token_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_filter_module.c -------------------------------------------------------------------------------- /ngx_http_secure_token_filter_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_filter_module.h -------------------------------------------------------------------------------- /ngx_http_secure_token_m3u8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_m3u8.c -------------------------------------------------------------------------------- /ngx_http_secure_token_m3u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_m3u8.h -------------------------------------------------------------------------------- /ngx_http_secure_token_processor_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_processor_base.c -------------------------------------------------------------------------------- /ngx_http_secure_token_processor_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_processor_base.h -------------------------------------------------------------------------------- /ngx_http_secure_token_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_utils.c -------------------------------------------------------------------------------- /ngx_http_secure_token_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_utils.h -------------------------------------------------------------------------------- /ngx_http_secure_token_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_xml.c -------------------------------------------------------------------------------- /ngx_http_secure_token_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/ngx_http_secure_token_xml.h -------------------------------------------------------------------------------- /scripts/encryptUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/scripts/encryptUrl.php -------------------------------------------------------------------------------- /scripts/encryptUrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/scripts/encryptUrl.py -------------------------------------------------------------------------------- /travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaltura/nginx-secure-token-module/HEAD/travis_build.sh --------------------------------------------------------------------------------