view host/update_ssl_conf.sh @ 2092:429827024f4e ssltesting

inline local_https.sh + minor
author Violet7
date Fri, 12 Dec 2025 18:53:15 -0800
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