]> git.plutz.net Git - cgilite/blobdiff - static.sh
conform to standard by sending cache information with 304 response
[cgilite] / static.sh
index e8de7d16dc727bdaf18170f59cf261862173b6dd..44c6556ed147a91e99218e2600bda85f09972c4b 100755 (executable)
--- a/static.sh
+++ b/static.sh
@@ -19,7 +19,7 @@
 
 
 unset length date file suffix
-file="$_EXEC/static/$STATIC"
+file="$1"
 date="$(stat -c %Y "$file")"
 
 # allow overriding magic file recognition
@@ -30,7 +30,8 @@ suffix[css]="text/css"
 if [ -x "$file" -o \! -r "$file" -o \! -f "$file" ]; then
   printf 'HTTP/1.1 403 Forbidden\r\n\r\n'
 elif [ "$date" = "$HTTP_IF_NONE_MATCH" ]; then
-  printf 'HTTP/1.1 304 Not Modified\r\n\r\n'
+  printf 'HTTP/1.1 304 Not Modified\r\n'
+  printf 'Etag: %s\r\n\r\n' "$date"
 else
   length="$(stat -c %s "$file")"
   magic="${suffix[${file##*.}]:-$(file -bi "$file")}"