mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] begin serial at 00 for SSL cert generation
This commit is contained in:
parent
898620e59d
commit
0e76b82360
2 changed files with 7 additions and 7 deletions
|
@ -26,7 +26,7 @@ sudo mkdir -p $ssl_dir/{ca,certs,crl,newcerts}
|
|||
safe_copy openssl.cnf $ssl_dir/openssl.cnf
|
||||
|
||||
[ -f $ssl_dir/serial ] \
|
||||
|| (echo "01" | sudo tee $ssl_dir/serial)
|
||||
|| (echo "00" | sudo tee $ssl_dir/serial)
|
||||
|
||||
[ -f $ssl_dir/index.txt ] \
|
||||
|| sudo touch $ssl_dir/index.txt
|
||||
|
|
|
@ -36,12 +36,6 @@ done
|
|||
|
||||
if [ -f /etc/yunohost/installed ]; then
|
||||
|
||||
# Copy 'yunohost.local' to the main domain conf directory
|
||||
main_domain=$(cat /etc/yunohost/current_host)
|
||||
safe_copy yunohost_local.conf \
|
||||
/etc/nginx/conf.d/$main_domain.d/yunohost_local.conf
|
||||
|
||||
|
||||
need_restart=False
|
||||
domain_list=$(sudo yunohost domain list --plain)
|
||||
|
||||
|
@ -61,6 +55,12 @@ if [ -f /etc/yunohost/installed ]; then
|
|||
done
|
||||
|
||||
|
||||
# Copy 'yunohost.local' to the main domain conf directory
|
||||
main_domain=$(cat /etc/yunohost/current_host)
|
||||
safe_copy yunohost_local.conf \
|
||||
/etc/nginx/conf.d/$main_domain.d/yunohost_local.conf
|
||||
|
||||
|
||||
# Remove old domains files
|
||||
for file in /etc/nginx/conf.d/*.*.conf; do
|
||||
domain=$(echo $file \
|
||||
|
|
Loading…
Add table
Reference in a new issue