1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
vesta/install/ubuntu/16.04/templates/web/nginx/hosting.sh

12 lines
131 B
Bash
Raw Permalink Normal View History

2016-11-22 16:55:09 +02:00
#!/bin/bash
# Changing public_html permission
user="$1"
domain="$2"
ip="$3"
home_dir="$4"
docroot="$5"
chmod 755 $docroot
exit 0