Implementation of Nginx configuration and access to local static resources in Mac environment

Implementation of Nginx configuration and access to local static resources in Mac environment

Sometimes local development requires debugging of static file resources that cannot be accessed directly. This can be done by configuring the local Nginx service. By the way, the configuration steps of Nginx are recorded.

Install

<!--Install via Brew: -->
brew install nginx
<!--Start: -->
brew services start nginx
<!--View configuration: -->
cat usr/local/etc/nginx/nginx.conf
<!--Edit configuration: -->
vi usr/local/etc/nginx/nginx.conf

Nginx command:

<!--Start: -->
nginx

<!--Stop/Restart-->
nginx -s stop/start/restart

Configuration Files

File address: usr/local/etc/nginx/nginx.conf

# Only root owner can access root's static files, otherwise 403 will be reported
user root owner;
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 port listen 8080;
    # Bind domain name server_name local.XXX.com;

    #charset koi8-r;

    #access_log logs/host.access.log main;
    
    #File path and entry file location / {
      root /usr/local/var/www;
      index index.html index.htm;
    }
    
    # Interface resource 1
    location /XXXapi/ {
      proxy_pass https://api.XXX.com; 
    }
    # Interface resource 2
    location /apiXXX/ {
      proxy_pass https://api.XXX.com; 
    }

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

  include servers/*;
}

Configuration steps

  • Install Nginx
  • Bind HOST via SwitchHost (127.0.0.1 local.XXX.com)
  • Configure port and domain name
# Listen port listen 8080;
# Bind domain name server_name local.XXX.com;
Specify the entry file and static file path#File path and entry file location / {      
 root /usr/local/var/www;      
 index index.html index.htm;    
}
If there are additional API resources, bind the corresponding API resource address through proxy_pass# Interface resource 1
location /XXXapi/ {
  proxy_pass https://api.XXX.com; 
}
# Interface resource 2
location /apiXXX/ {
  proxy_pass https://api.XXX.com; 
}
  1. Put static files into the file path of Nginx configuration
  2. DONE, the local can open the static website resources and access them through the corresponding HOST

This is the end of this article about Nginx configuration in Mac environment and the implementation of accessing local static resources. For more relevant content about Nginx configuration and accessing local static resources, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use nginx to access local static resources on Linux server

<<:  Web project development JS function anti-shake and throttling sample code

>>:  How to install MySQL 5.7.29 with one click using shell script

Recommend

Linux/Mac MySQL forgotten password command line method to change the password

All prerequisites require root permissions 1. End...

Telnet is moved to busybox-extras in Alpine image

The telnet in the Alpine image has been moved to ...

How to use Docker container to access host network

Recently, a system was deployed, using nginx as a...

How to set the width attribute to the style of the span tag

If you directly set the width attribute to the sty...

Get a list of your top 10 most frequently used terminal commands in Linux

I think the commands I use most often are: Choice...

Some tips on speeding up the development of WeChat mini-programs

1. Create a page using app.json According to our ...

How to deploy k8s in docker

K8s k8s is a cluster. There are multiple Namespac...

Why is the MySQL auto-increment primary key not continuous?

Table of contents 1. Introduction 2. Self-increme...

js dynamically implements table addition and deletion operations

This article example shares the specific code for...

SQL implementation of LeetCode (182. Duplicate mailboxes)

[LeetCode] 182.Duplicate Emails Write a SQL query...

Solve nginx "504 Gateway Time-out" error

Students who make websites often find that some n...

Analysis of the principle and creation method of Mysql temporary table

This article mainly introduces the principle and ...

js to implement verification code interference (static)

This article shares the specific code of js to im...

MySQL 8.0.11 Installation Tutorial under Windows

This article records the installation tutorial of...