Giter Club home page Giter Club logo

ruoyi-vue-fast's Introduction

From: 07 April 2024 - To: 14 April 2024

Total Time: 34 hrs 30 mins

TypeScript       31 hrs 40 mins  ███████████████████████░░   91.81 %
JSON             1 hr 7 mins     ▓░░░░░░░░░░░░░░░░░░░░░░░░   03.26 %
Markdown         30 mins         ▒░░░░░░░░░░░░░░░░░░░░░░░░   01.46 %
JavaScript       19 mins         ▒░░░░░░░░░░░░░░░░░░░░░░░░   00.93 %
YAML             13 mins         ░░░░░░░░░░░░░░░░░░░░░░░░░   00.63 %

ruoyi-vue-fast's People

Contributors

yangzongzhuan avatar zjy4fun avatar

ruoyi-vue-fast's Issues

部署方案

前端部署

nginx 设置反向代理,以 ubuntu 为例,修改配置文件 /etc/nginx/conf/nginx.conf

server {
        listen 8060;
        listen [::]:8060;

        server_name localhost;

		root /root/ruoyi/dist; #这里写 dist 目录
        index index.html;

        location / {
                try_files $uri $uri/ /index.html;
        }
        location /prod-api/{
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header REMOTE-HOST $remote_addr;

                proxy_pass http://localhost:8080/; #注意,这里是后端API接口
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.