Skip to content

Instantly share code, notes, and snippets.

View SiddheshNan's full-sized avatar

Siddhesh Nandurkar SiddheshNan

View GitHub Profile
@SiddheshNan
SiddheshNan / README.md
Created October 11, 2020 17:09 — forked from GilLevi/README.md
Age and Gender Classification using Convolutional Neural Networks
@SiddheshNan
SiddheshNan / image-proxy.conf
Created June 9, 2019 03:49 — forked from tmaiaroto/image-proxy.conf
Nginx Image Filter Resize Proxy Service
# Feel free to change this path of course (and keys_zone value as well, but also change the usage of it below).
proxy_cache_path /var/www/cache/resized levels=1:2 keys_zone=resizedimages:10m max_size=1G;
# Gzip was on in another conf file of mine...You may need to uncomment the next line.
#gzip on;
gzip_disable msie6;
gzip_static on;
gzip_comp_level 4;
gzip_proxied any;
# Again, be careful that you aren't overwriting some other setting from another config's http {} section.