Package talk:Nginx

From Funtoo
Revision as of 07:29, December 19, 2014 by Threesixes (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

things i would like to know:

  • vhosts (with subdomain examples)
  • ssl
  • ssl termination for varnish + x forward for settings so web apps produce clients ip addys instead of 127.0.0.1
  • email, pop3 + smtp + imap
  • probably wsgi for python peoples
  • cgi for perl zombies

change the webrick line to include 'or puma' on port 3k.... and point to Package:Ruby#puma

  • explore the webapp firewall security flag:: nginx_modules_http_security
  • explore geoip:: nginx_modules_http_geoip
  • explore fancy index: nginx_modules_http_fancyindex

Threesixes (talk) 22:33, October 23, 2014 (UTC)


add expires headers for caching static content: /etc/nginx/sites-enabled/localhost expires 24h; ...

add cache control headers: /etc/nginx/sites-enabled/localhost add_header Cache-Control "public"; ... Threesixes (talk)