nginx的域名配置
程序员文章站
2022-06-11 13:27:03
...
重点:浏览器访问nginx服务器的流程
1拿到浏览器地址栏输入url
2依次从局域网、本机host、dns服务器解析出 ip地址
3.拿着解析出的ip地址去访问目标实体服务器(不是nginx服务器,而是liunx)
4.访问到服务器后 再拿url去访问nginx服务器(是拿url不是ip)
知道以上流程,就不难理解Nginx的server配置了
http {
: server {
: listen 80;
: server_name www.domain1.com;
: access_log logs/domain1.access.log main;
: location / {
: index index.html;
: root /var/www/domain1.com/htdocs;
: }
: }
: server {
: listen 80;
: server_name www.domain2.com;
: access_log logs/domain2.access.log main;
: location / {
: index index.html;
: root /var/www/domain2.com/htdocs;
: }
: }
}