美文网首页
nginx配置虚拟域名

nginx配置虚拟域名

作者: Roct | 来源:发表于2019-06-16 12:28 被阅读0次

    修改host

    • host路径:C:\Windows\System32\drivers\etc\hosts
    192.168.0.101 tomcat.paolu.com
    
    • 保存退出

    创建nginx的配置服务

    • 进入nginx/conf目录下
      新建vhost文件创建tomcat.paolu.com.conf文件,内部输入
    server { 
        listen 80; 
        autoindex off; 
        server_name tomcat.paolu.com; 
        access_log H:/access.log combined; 
        index index.html index.htm index.jsp index.php; 
        #error_page 404 /404.html; 
        if ( $query_string ~* ".*[\;'\<\>].*" ){ 
            return 404; 
        } 
        location / { 
            proxy_pass http://192.168.0.101:8080; 
            add_header Access-Control-Allow-Origin *; 
        } 
    } 
    
    • 打开nginx目录下的nginx.conf文件,引入刚刚的vhost配置文件目录
     include vhost/*.conf;
    
    example
    • 进入nginx目录下, 执行命令
     .\nginx.exe -t
    

    输出:

    nginx: the configuration file H:\nginx\nginx-1.10.2/conf/nginx.conf syntax is ok
    nginx: configuration file H:\nginx\nginx-1.10.2/conf/nginx.conf test is successful
    

    再执行

    .\nginx.exe -s reload
    

    打开tomcat.paolu.com即可访问到启动的端口为8080的tomcat服务页面。

    相关文章

      网友评论

          本文标题:nginx配置虚拟域名

          本文链接:https://www.haomeiwen.com/subject/zbawfctx.html