sh 在Ubuntu中设置虚拟主机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在Ubuntu中设置虚拟主机相关的知识,希望对你有一定的参考价值。

# Create as root new website folder
sudo mkdir -p /var/www/example.com/public_html
# Give permissions to regular users
sudo chown -R $USER:$USER /var/www/example.com/public_html
# Give read permissions to general web directory
sudo chmod -R 755 /var/www
# Create index.html
nano /var/www/example.com/public_html/index.html
# Copy and rename default example config file
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/example.com.conf
# Edit config file
# See for config: https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-debian-8
# Enable config
sudo a2ensite example.com.conf
# Restart apache server
sudo systemctl restart apache2

以上是关于sh 在Ubuntu中设置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章

sh 在Ubuntu 15中设置语言环境

在 ubuntu 的 git 存储库中设置 AWSDevTools-RepositorySetup.sh

如何在一个文件中设置多个虚拟主机

Ubuntu #Apache2 Ubuntu 14.04 LTS系统中设置Apache虚拟主机

sh 在Vagrant Ubuntu框中设置Vim + Vundle + Solarized + Tmux。这与我在Vim + Tmux上的文章有关:http://fideloper.com/mac-

Ubuntu中设置静态IP和DNS(转载)