blob: ffe53c464284bedae863132c2608a34bf38016e0 [file] [log] [blame] [edit]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
server {
listen 80;
server_name docs.opentitan.org;
add_header Cache-Control "public, max-age=21600";
return 301 https://opentitan.org/book$request_uri;
}
server {
listen 80 default_server;
server_name _;
return 444;
}