view host/update_ssl_conf.sh @ 2094:3c40cb15d468 ssltesting tip

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 13 Dec 2025 20:54:14 -0700
parents fefa68b56ddd
children
line wrap: on
line source

#!/bin/bash
set -e

here=$(pwd)

for conf in sites/*/nginx.ssl.conf; do
	domain=$(basename $(dirname "$conf"))
	luan startup/nginx/nginx.ssl.conf.luan $here $domain >$conf
done