linux服务器怎么创建内网域名?

linux服务器怎么创建内网域名?,第1张

Nginx多域名配置 一、环境准备 1.Tengine,也称Taobao nginx,淘宝在Nginx基础上,针对大型网站访问,添加了一些高级功能和特性。 2.Resin服务器或者Tomcat服务器,用来做Web服务器 二、域名解析 假设虚拟主机外网IP是123.123.123.123,添加解析到该域名: 1.添加域名解析,@和www,分别对应tngtech.co

使用一键安装包配置的apache环境,添加网站配置方法如下:

1.命令:cd /alidata/server/httpd/conf/vhosts/

进入网站的配置文件目录

2.命令:vi aa.conf

创建一个新的配置文件

3.按键盘上的字母 “i” ,开始编辑文件,将下面的内容复制过去。

Order allow,deny

Deny from all

DocumentRoot /alidata/www/test

ServerName www.test.com

ServerAlias test.com

Options Indexes FollowSymLinks

AllowOverride all

Order allow,deny

Allow from all

RewriteEngine On

RewriteRule ^(.*)-htm-(.*)$ $1.php?$2

RewriteRule ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2

ErrorLog "/alidata/log/httpd/test-error.log"

CustomLog "/alidata/log/httpd/test.log" common

对应自己的

ServerName www.test.com 绑定的网站域名

ServerAlias test.com 绑定的网站别名(您如果有多个域名添加在这里)没有的话,这个可以删除。

DirectoryIndex index.html index.php index.htm 设置默认首页

DocumentRoot /alidata/www/test 和 Directory "/alidata/www/test" 和 DirectoryMatch "/alidata/www/test/都是指定网站的目录,需要一致。

ErrorLog "/alidata/log/httpd/test-error.log" 和 CustomLog "/alidata/log/httpd/test.log" 对应的日志名字也需要自己修改一下,可以区分网站的日志信息。

4.输入命令:/alidata/server/httpd/bin/apachectl restart 重启apache测试。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/378764.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-15
下一篇2023-05-15

发表评论

登录后才能评论

评论列表(0条)

    保存