zoukankan      html  css  js  c++  java
  • nginx配置多域名

    http{	
    	# 第一个虚拟主机
    	server {
    		listen       80;
    		server_name  aaa.domain.com;
    
    		#access_log  logs/host.access.log  main;
    
    		location / {
    			root   /usr/share/nginx/html/aaa;
    			index  index.php index.html index.htm;
    		}
    
    		error_page  404              /404.html;
    		location = /404.html {
    			root   /usr/share/nginx/html;
    		}
    
    		# redirect server error pages to the static page /50x.html
    		#
    		error_page   500 502 503 504  /50x.html;
    		location = /50x.html {
    			root   /usr/share/nginx/html;
    		}
    
    
    		# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    		#
    		location ~ .php$ {
    			root           /usr/share/nginx/html/aaa;
    			fastcgi_pass   127.0.0.1:9000;
    			fastcgi_index  index.php;
    			fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    			include        fastcgi_params;
    		}
    		
    	}
    	
        # 第二个虚拟主机
        server
        {
            # 监听的IP和端口
            listen     80;
            # 主机名称
            server_name    bbb.otherdomain.com;
            # 访问日志文件存放路径
            access_log      logs/bbb.otherdomain.com.access.log combined;
            location /
            {
                # 默认首页文件,顺序从左到右,如果找不到index.html文件,则查找index.htm文件作为首页文件
                index index.html index.htm;
                # HTML网页文件存放的目录
                root  /usr/share/nginx/html/aaa;
            }
        }	
    
    
        # another virtual host using mix of IP-, name-, and port-based configuration
        #
        #server {
        #    listen       8000;
        #    listen       somename:8080;
        #    server_name  somename  alias  another.alias;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    
        # HTTPS server
        #
        #server {
        #    listen       443 ssl;
        #    server_name  localhost;
    
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
    
        #    ssl_session_cache    shared:SSL:1m;
        #    ssl_session_timeout  5m;
    
        #    ssl_ciphers  HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers  on;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    }

  • 相关阅读:
    Fiddler响应post的请求 request body里面填写什么?
    intellij idea 插件 ideaVim 用法
    Ubuntu 配置有线网 IP
    Git TortoiseGit SSH设置
    QT+QT creator+OpenCV图像灰度化
    用的最多的Android Studio 快捷键
    做高通平台安卓驱动感言
    《高可用MySQL》2 – 单机版MySQL主从配置
    JAVA学习第四十七课 — IO流(一):文件的读写
    hive 配置文件以及join中null值的处理
  • 原文地址:https://www.cnblogs.com/moqiang02/p/4061144.html
Copyright © 2011-2022 走看看