美文网首页
Linux Nginx 部署 多个项目

Linux Nginx 部署 多个项目

作者: Rinaloving | 来源:发表于2023-02-20 10:16 被阅读0次

Nginx 部署 多个项目

1. 准备

  • 这里默认已经安装了nginx
  • 在 /usr/local/nginx/ 下 新建个 html2 的文件夹,并授权
[root@VM-0-7-centos html]# cd ..
[root@VM-0-7-centos nginx]# mkdir html2
[root@VM-0-7-centos nginx]# chmod  -R 777 html2
[root@VM-0-7-centos nginx]# 
  • 放入前端文件


    QQ截图20230221094522.png
  • 修改配置文件(vim /usr/local/nginx/conf/nginx.conf),添加下面的内容

    server {
        listen       8000;
        
        server_name  172.*.*.14;

        location / {
           root   html2;
            index  index.html index.htm;
        }
    }
  • 重启nginx
[root@VM-0-7-centos ~]# cd /usr/local/nginx/sbin/
[root@VM-0-7-centos sbin]# ls
nginx
[root@VM-0-7-centos sbin]# ./nginx -s reload
  • 访问成功


    QQ截图20230221101528.png
  • 完整配置如下
[root@VM-0-7-centos ~]# cat /usr/local/nginx/conf/nginx.conf


#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 {
add_header 'Access-Control-Allow-Origin' '*'; #允许来自所有的访问地址 add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, OPTIONS'; #支持请求方式 add_header 'Access-Control-Allow-Headers' 'Content-Type,*';
        listen       80;
        server_name  172.*.*.14;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

#配置代理 拦截ip:port:/api的请求转发到 配置的转发地址
        location /api {
            rewrite ^.+api/?(.)$ /$1 break; # 去除本地接口/api前缀, 否则会出现404
            proxy_pass http://172.*.*.14:8063; # 转发地址

        }
        #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;
        
        server_name  172.*.*.14;

        location / {
           root   html2;
            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;
    #    }
    #}

}
[root@VM-0-7-centos ~]# 

相关文章

网友评论

      本文标题:Linux Nginx 部署 多个项目

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