Sample code for flask and vue front-end and back-end separation project deployment

Sample code for flask and vue front-end and back-end separation project deployment

I developed a project some time ago. I used the flask framework to write the interface for the backend and the vue framework for the frontend. The front and back ends of the project were completely separated. I encountered some problems during deployment, so I recorded them.

Deployment environment: centos6.5 , Python3.6.3 , flask0.12.0 vue

Deployment method: uwsgi+nginx

step:

​ 1. First install the python runtime environment, normal ​ 2. Install uswsgi and run normally (use pip to install, pip install uwsgi):

Create a new config.ini file

[uwsgi]

# The address and port used when uwsgi is started. Nginx proxy needs to forward to this address socket = xxxx:xxxx    
#Python environment directory #home = /usr/local/python/bin
#Point to the website root directory chdir = /root/www
#python project startup program file wsgi-file = /root/www/run.py
#The application variable name used to start the python program callable = app
#Number of processors processes = 3
#Number of threads threads = 3
#Status monitoring address stats = 127.0.0.1:5000
#Set the internal buffer size for uwsgi package parsing. Default 4k
buffer-size = 32768

uwsgi startup command:

uwsgi config.ini #This command directly starts uwsgi -d --ini config.ini #This command runs in the background, commonly used

3. Install nginx, normal, we are the operation and maintenance installation, the process is not shown, please Baidu

Here comes the question:

When we proxy vue and flask at the same time, no matter how we try, the front end cannot access the address of flask

Solution:

​ Two different domain names are used to proxy vue and flask respectively, and vue points to the proxy domain name of flask

user nginx;
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 xx;
    use epoll;
}


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;
    server_tokens off;
    sendfile on;
    #tcp_nopush on;

    #keepalive_timeout 0;
    keepalive_timeout xx;

    #gzip on;
        server {
                listen xx;
                server_name hqfund.com www.hqfund.com;
                return 301 https://$host$request_uri;
  }
 
 server {
  listen 443 ssl;
  server_name xxx.com1;
         ssl_certificate /xxxx;
         ssl_certificate_key /xxxx;


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

    server {
                listen xx;
                server_name xxx.com2;
                return 301 https://$host$request_uri;
  }
  
 server {
  listen xxx ssl;
  server_name xxx.com2;
  ssl_certificate /xxxx;
         ssl_certificate_key /xxxx;
  
  location / {
              include uwsgi_params;
   uwsgi_pass xxxx:xx;
   proxy_http_version 1.1;
   proxy_set_header Upgrade $http_upgrade;
   proxy_set_header Connection "upgrade";
  }
 }
}

This concludes this article about the sample code for flask and vue front-end and back-end separation project deployment. For more information about flask and vue front-end and back-end separation, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example of how to deploy a Flask project with uWSGI and Nginx
  • Python project migration and deployment based on Flask framework configuration dependency package information
  • How to deploy the flask project on CentOS
  • Implementation steps for the deployment of the Flask project

<<:  Solution to web page confusion caused by web page FOUC problem

>>:  Why should css be placed in the head tag

Recommend

Detailed code examples of seven methods for vertical centering with CSS

When we edit a layout, we usually use horizontal ...

Solution to Linux CentOS 6.5 ifconfig cannot query IP

Recently, some friends said that after installing...

Description of the execution mechanisms of static pages and dynamic pages

1. A static page means that there are only HTML ta...

Detailed tutorial of using stimulsoft.reports.js with vue-cli

vue-cli uses stimulsoft.reports.js (nanny-level t...

Use Python to connect to MySQL database using the pymysql module

Install pymysql pip install pymysql 2|0Using pymy...

How to install phabricator using Docker

I am using the Ubuntu 16.04 system here. Installa...

CSS3 realizes bouncing ball animation

I usually like to visit the special pages or prod...

Detailed explanation of Linux rpm and yum commands and usage

RPM package management A packaging and installati...

Detailed explanation of software configuration using docker-compose in linux

Preface This article will share some docker-compo...

Web page layout should consider IE6 compatibility issues

The figure below shows the browser viewing rate i...

Use simple jQuery + CSS to create a custom a tag title tooltip

Introduction Use simple jQuery+CSS to create a cus...

MySql fuzzy query json keyword retrieval solution example

Table of contents Preface Option 1: Option 2: Opt...

Summary of DTD usage in HTML

DTD is a set of grammatical rules for markup. It i...