Detailed steps to install nginx on Apple M1 chip and deploy vue project

Detailed steps to install nginx on Apple M1 chip and deploy vue project

brew install nginx

Apple Mac uses brew to install. If brew is not installed, please search elsewhere.
Execute Command

The first step is of course to update our brew library, which can be considered a software warehouse, similar to the Android Market and Apple AppStore.

brew update

The second step is to directly find out whether there is nginx in our brew library

brew search nginx

Normally, the following situation will occur

If it appears, it proves that the library is already there, and you can directly run the installation command

brew install nginx

As long as there is no error after the installation, your nginx has been installed successfully. . .

Nginx corresponding path in mac environment

First of all, we must know the common paths of our nginx. I have listed them

illustrate path
nginx configuration path (conf and other files) /usr/local/etc/nginx
The package address of the project deployed on nginx /usr/local/etc/nginx/servers
Logs in nginx /usr/local/var/log/nginx
Access the default homepage address in nginx /usr/local/var/www

Edit the nginx.conf file corresponding to nginx, corresponding to the configuration path we mentioned above

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



    sendfile on;
    #tcp_nopush on;

    #keepalive_timeout 0;
    keepalive_timeout 65;
	client_body_buffer_size 10m;
	client_max_body_size 20m;
    #gzip on;

    server {
        listen 80;
        server_name localhost;
        location / {
            root /usr/local/etc/nginx/servers/html;
            index index.html;
            try_files $uri $uri/ /index.html;
        }
        location /api {
           proxy_pass http://localhost:18080/api;
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
           set $Real $http_x_forwarded_for;
           if ( $Real ~ (\d+)\.(\d+)\.(\d+)\.(\d+),(.*) ){
                set $Real $1.$2.$3.$4;
          }
          proxy_set_header X-Real-Ip $Real;
        }
}

There is one detail that needs special attention. If your root is not an absolute path, you may not be able to access it.

insert image description here

Most of the paths on the Internet are relative. I don't know what the problem is. It doesn't work locally. I have to use an absolute path. The server/html thing in the path above is the dist package of your vue project after the npm run build command. Just unzip it and put it in this path. The name must correspond to the path of your nginx configuration file.

The final ending

Finally, start nginx and enter the terminal command directly

nginx

If you want to specify the nginx.conf file you started

nginx -c / followed by the path

Stop nginx

nginx -s stop

Restart nginx

nginx -s reload

This is the end of this article about installing nginx on Apple M1 chip and deploying vue project. For more information about installing nginx on Apple M1 chip and deploying vue project, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Two usages of iFrame tags in HTML

>>:  A brief discussion on whether CSS animation will be blocked by JS

Recommend

How to limit the number of records in a table in MySQL

Table of contents 1. Trigger Solution 2. Partitio...

Record the process of connecting to the local Linux virtual machine via SSH

Experimental environment: Physical machine Window...

Two ways to implement text stroke in CSS3 (summary)

question Recently I encountered a requirement to ...

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Pr...

Detailed explanation of custom events of Vue components

Table of contents Summarize <template> <...

Does Mysql ALTER TABLE lock the table when adding fields?

Table of contents Before MySQL 5.6 After MySQL 5....

How to use Docker-compose to deploy Django applications offline

Table of contents Install Docker-ce for the devel...

Simple Mysql backup BAT script sharing under Windows

Preface This article introduces a simple BAT scri...

CentOS6.8 Chinese/English environment switching tutorial diagram

1. Introduction People who are not used to Englis...

JS implements simple calendar effect

This article shares the specific code of JS to ac...

Solution to Vue data assignment problem

Let me summarize a problem that I have encountere...