@bencapp3/react-native-static-server
Version:
Embedded HTTP server for React Native
23 lines (20 loc) • 617 B
Plain Text
######################################################################
#
# Expire Module
# ---------------
#
# See https://redmine.lighttpd.net/projects/lighttpd/wiki/docs_modexpire
#
server.modules += ( "mod_expire" )
#
# assigns an expiration to all files below the specified path. The
# specification of the time is made up of:
#
# <access|modification> <number> <years|months|days|hours|minutes|seconds>
#
expire.url = (
"/buggy/" => "access 2 hours",
"/images/" => "access plus 1 seconds 2 minutes"
)
#
######################################################################