搭建

作者: A_dfa4 | 来源:发表于2021-03-22 09:59 被阅读0次
  1. 安装nginx
    文章: [https://www.cnblogs.com/ghzjm/p/10677599.html]
    https://blog.csdn.net/zjh_746140129/article/details/81197721
  2. 安装node
    文章: [https://www.jianshu.com/p/617bdda80c4c
  3. 软连
  • 绑定 ln -s /nodejs/bin/npm /usr/local/bin/
    空格前面是自己的npm路径 后面固定的
  • 删除软连
    /usr/local/bin/ rm -rf npm
    1. 进入目录 /usr/local/bin/
    2. rm -rf npm 删除对应的软连
  1. nginx (http://47.114.175.167/login)
    1. /usr/local/nginx/sbin 下面可以运行 nginx命令
    2. /usr/local/nginx/conf 配置文件
    3. ./nginx -s reload 重启服务器
    4. 问题 指了俩次 location /根 是错误的
    5. 问题 用宝塔默认下面的include 是错的

直接就安装好了 yum install -y 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  examination;
        index  index.html index.php index.htm index.jsp index.do default.do;
        #charset koi8-r;

        #access_log  logs/host.access.log  main;
    root  /var/www/answer-web;

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

    location ^~ / {

        rewrite ^\/(.*)$  /$1 break;
        proxy_pass http://127.0.0.1:2806;

    }

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

}

相关文章

网友评论

      本文标题:搭建

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