Thanks to
https://www.digitalocean.com/community/tutorials/
how-to-implement-browser-caching-with-nginx-s-header-module-on-centos-7
for teaching.
bigger click-target pagination links
verify my domain with Search Console so that I can see search keywords
restrict "fiction" to "longform" (not dialogues) (I made the opposite call at some point, and I think I want to reverse it)
-What's going on with caching behavior??
404 page??
glitchiness in "Editorial Process"
link to archives page
+map $sent_http_content_type $expires {
+ default off;
+ text/html epoch;
+}
+
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
+ expires $expires;
+
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
location /static { # gitweb static files
root /usr/share/gitweb;
- try_files $uri $uri/ =404;
+ try_files $uri $uri/ =404;
}
}