`

使用nginx做为静态服务器--监听两个域名配置

阅读更多
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


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

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

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
		# 第一个域名
        server_name  shang.henushang.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

		
	server {
        listen       80;
		#第二个域名
        server_name  cui.henushang.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
			# 设置第二个域名默认访问500错误页面以作区分
            index  50x.html;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
  

    # 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;
    #    }
    #}

}

 

分享到:
评论

相关推荐

    thinkphp3.1.3升级php7及nginx配置伪静态.zip

    下面将详细阐述这两个主要知识点。 **一、ThinkPHP3.1.3升级至PHP7** ThinkPHP3.1.3是一款在中国广泛应用的PHP轻量级框架,而PHP7相较于之前的版本,如PHP5.x,带来了显著的性能提升和新的特性。升级过程主要包括...

    nginx服务器配置.docx

    ### Nginx 服务器配置详解 #### Nginx 基础知识 Nginx 是一款高性能的HTTP和反向代理Web服务器,同时也提供了IMAP/POP3/SMTP服务。它以其稳定性、丰富的功能集、简单的配置方式和较低的资源消耗而闻名。Nginx 可...

    nginx一个域名多个项目部署.doc

    总结来说,通过Nginx的虚拟主机和location配置,我们可以轻松地在一个域名下部署和管理多个项目,无论是静态内容还是动态应用,都能高效、灵活地处理。结合负载均衡和反向代理功能,Nginx成为企业级网站和应用程序...

    nginx操作技术

    上述配置文件定义了两个基于IP地址的虚拟主机,其中`listen`指令指定了监听的端口和IP地址,`server_name`指令指定了该虚拟主机对应的域名(在这里使用IP地址代替域名),`root`指令指定了网站根目录的位置,而`...

    02nginx动态配置.zip

    - **server块**: 表示一个监听特定端口的服务器,可以有多个server块,用于处理不同的域名或端口请求。 - **location块**: 根据URL匹配规则,执行不同的处理逻辑,如反向代理、静态文件服务等。 ### 2. Nginx启动、...

    项目打包运行dist以及nginx配置

    在IT行业中,项目打包运行和Nginx配置是两个关键环节,它们对于应用程序的部署和发布至关重要。这里我们将深入探讨这两个主题。 首先,项目打包运行通常指的是将开发完成的前端或后端应用转换为可部署的形式。对于...

    Nginx企业级WEB服务器实战

    - 通常情况下,Nginx会监听80端口,并通过`server`块来定义不同域名或路径的配置。 - 可以添加多个`server`块来支持多个网站或应用。 3. **启动服务**:启动Nginx服务,通常使用如下命令: ``` sudo systemctl ...

    vue打包部署nginx 配置

    Nginx通过配置文件`nginx.conf`来定义其工作方式,每个配置块都包含监听端口、服务器名、路由规则等内容。 三、Vue项目部署到Nginx 1. 配置Nginx服务器 首先,需要在Nginx的`sites-available`目录下创建一个新的...

    Nginx安装及配置笔记

    另外,`upstream backend`定义了两个后端服务器,`location /api`将请求代理到这个后端组。 要测试配置文件的语法正确性,可以使用`nginx -t`命令。查看编译选项,用`nginx -V`。Nginx的管理命令包括重启、关闭和...

    nginx基础配置.rar

    其主要工作在两个层面:反向代理和静态文件服务。 - **反向代理**:Nginx作为客户端与后端服务器之间的中间层,接收客户端请求并转发给内部服务器,减轻了前端服务器的压力,同时实现了负载均衡。 - **静态文件服务...

    Nginx+tomcat

    - 解压两个 Tomcat 服务器实例,并分别命名为 `apache-tomcat-6.0.33-1` 和 `apache-tomcat-6.0.33-2`。 - 修改每个 Tomcat 的启动端口,分别为 18080 和 28080。这可以通过编辑 `conf/server.xml` 文件中的相应...

    Vue中跨域及打包部署到nginx跨域设置方法

    4. 修改`nginx.conf`文件中的`server`配置块,设置监听的端口(默认为80端口)。 ```nginx server { listen 80; server_name localhost; # 配置静态资源路径和代理路径 location / { root html; index index...

    基于linux下nginx的安装及项目部署

    - `listen`: 指定服务器监听的端口。 - `server_name`: 设置虚拟主机的域名。 - `location`: 定义请求匹配规则,用于路由请求。 - `proxy_pass`: 用于反向代理,指定后端服务器的地址。 - `access_log`: 配置...

    Nginx负载均衡配置

    首先,要配置Nginx与Tomcat实现负载均衡,需要准备两个Tomcat实例,每个实例可以部署一个简单的Web项目,例如通过在页面上标注不同的端口号,以便区分它们。部署完成后,需要配置Nginx的nginx.conf文件,使其成为一...

    linux-添加SSL配置到nginx

    在生产环境中,你需要替换这两个文件为从CA获得的实际证书。 接下来,我们需要编辑Nginx的配置文件。Nginx的配置文件通常位于`/etc/nginx/nginx.conf`,但根据你的系统配置可能有所不同。找到对应的服务器块...

    docker-compose-nginx资源包

    同时,我们挂载了两个卷,一个是自定义的Nginx配置文件,另一个是存放静态文件的目录。这允许我们在本地修改配置或静态文件,无需重新构建或启动容器就能看到变化。 接下来,我们来讨论Nginx的配置。`nginx.conf`...

    nginx安装部署配置.docx

    ### Nginx安装部署配置详解 #### 一、Nginx简介 Nginx是一款开源的高性能HTTP服务器和反向代理服务器,同时也可用作邮件(IMAP/POP3)代理服务器。它以其高性能、稳定性以及丰富的功能集而闻名,并且具有低资源消耗...

    nginx和tomcat访问图片和静态页面的配置方法

    在nginx配置文件中,可以定义服务器(server)监听的端口、域名等信息,并通过`location`指令来指定对不同类型的请求进行不同的处理。例如,对于图片资源的请求,可以通过`location ~* \.(gif|jpg|jpeg|png)$`来匹配...

    nginx详解及配置说明

    1. **阻塞IO(Blocking IO)**:在IO操作的两个阶段(等待数据和拷贝数据)中,进程都会被阻塞。 2. **非阻塞IO(Non-blocking IO)**:系统调用不会让进程等待,若数据未准备,则立即返回错误。 3. **I/O复用(IO...

Global site tag (gtag.js) - Google Analytics