Create hosting-firewall.sh

This commit is contained in:
myvesta 2020-05-08 21:05:31 +02:00 committed by GitHub
commit 60cefe45a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
#!/bin/bash
# Changing public_html permission
user="$1"
domain="$2"
ip="$3"
home_dir="$4"
docroot="$5"
chmod 755 $docroot
exit 0