linux中openSUSE 的 Apache配置步骤详解
2019/10/10/17:45:48 阅读:2031 来源:谷歌SEO算法 标签:
Google
本文章介绍的目的就是实现在 openSUSE 13.1 系统下,配置 Apache 服务器绑定 www.phpfensi.com二级域名,具体配置步骤如下.
DNS 绑定 A 记录#
首先在 DNS 上创建 A 记录,将域名绑定到相应 IP 上.
创建站点目录#
在服务器上,添加 /srv/www/vhosts/www.phpfensi.com 目录,并在该目录下创建一个 index.html 文件 – 用于测试.
配置 Apache#
创建虚拟主机配置文件#,代码如下:
- $cd/etc/apache2/vhosts.d
- $sudocpvhost.templatewww.phpfensi.com.conf
修改 www.phpfensi.com.conf 文件内容如下:
- <VirtualHost*:80>
- ServerNamewww.phpfensi.com
- ServerAdminchenxsan@gmail.com
- DocumentRoot/srv/www/vhosts/www.phpfensi.com
- ErrorLog/var/log/apache2/www.phpfensi.com-error_log
- CustomLog/var/log/apache2/www.phpfensi.com-access_logcombined
- #don'tloosetimewithIPaddresslookups
- HostnameLookupsOff
- #neededfornamedvirtualhosts
- UseCanonicalNameOff
- #configuresthefooteronserver-generateddocuments
- ServerSignatureOn
- #
- #ThisshouldbechangedtowhateveryousetDocumentRootto.
- #
- <Directory"/srv/www/vhosts/www.phpfensi.com">
- AllowOverrideAll
- OptionsFollowSymLinks
- Orderallow,deny
- Allowfromall
- </Directory>
- </VirtualHost>
之后重启 Apache:
$ sudo rcapache2 restart
访问 www.phpfensi.com 网址,已经可以看到 index.html 文件的内容了,如果我们之前未添加 index.html 文件,访问的话,则会出现如下错误信息:
- Accessforbidden!
- Youdon’thavepermissiontoaccesstherequesteddirectory.Thereiseithernoindexdocumentorthedirectoryisread-protected.
- Ifyouthinkthisisaservererror,pleasecontactthewebmaster.
- Error403
- www.phpfensi.com
热门评论