Nginx教程

Nginx配置虚拟主机(即:域名)

本文主要是介绍Nginx配置虚拟主机(即:域名),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

配置dns本地域名解析表

域名是需要解析成IP,本地会优先查找本地解析表
C:\Windows\System32\drivers\etc\hosts

192.168.56.10    php.test.com

测试域名解析

ping php.test.com

nginx配置虚拟主机

http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;

    gzip  on;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

    server {
        listen       80;
        server_name  php.test.com;

        root html/test;
        index index.html index.php index.htm;

        access_log  logs/${server_name}.access.log  main;

        location / {
            
        }
    }


}

访问

http://php.test.com/

这篇关于Nginx配置虚拟主机(即:域名)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!