How to use nginx to configure access to wgcloud

How to use nginx to configure access to wgcloud

The nginx configuration is as follows:

Such as http://172.17.188.27/wgcloud

server {
        listen 80;
        server_name localhost;
 
        #charset koi8-r;
 
        #access_log logs/host.access.log main;
 
        location / {
            proxy_pass http://172.17.188.27:9999;
            #root html;
            #index index.html index.htm;
        }
 
 
        #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;
        #}
    }

Remember to also write port 80 in the agent configuration file item serverUrl, as follows

#wgcloud-server access address, the port must be written, even if it is 80, serverUrl=http://172.17.188.27:80

Supplement: nginx configuration to access wgcloud to improve access speed

upstream wgcloudServer {
            server 172.17.188.27:9999 weight=10;
            ip_hash;
    }
    server {
        listen 80;
        server_name localhost;
        #charset koi8-r;
        #access_log logs/host.access.log main;
        location / {
            proxy_pass http://wgcloudServer;
            #root html;
            #index index.html index.htm;
        }
        #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;
        }

This is the end of this article about using nginx configuration to access wgcloud. For more relevant nginx configuration wgcloud content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of Nginx configuration of multi-port and multi-domain name access
  • Solve the problem of modifying configuration access of tp5 under nginx
  • How to configure nginx to limit the access frequency of the same IP
  • Steps to configure nginx ssl to implement https access (suitable for novices)
  • How to configure Nginx to distinguish between PC or mobile phone access to different domain names
  • Detailed explanation of Nginx access restriction configuration
  • Detailed explanation of nginx using ssl module configuration to support HTTPS access

<<:  How to open a page in an iframe

>>:  Building command line applications with JavaScript

Recommend

Difference between HTML ReadOnly and Enabled

The TextBox with the ReadOnly attribute will be di...

js native waterfall flow plug-in production

This article shares the specific code of the js n...

Detailed explanation of commands to view linux files

How to view linux files Command to view file cont...

Vue development tree structure components (component recursion)

This article example shares the specific code of ...

MySQL 8.0.20 installation and configuration detailed tutorial

This article shares with you a detailed tutorial ...

MySql import CSV file or tab-delimited file

Sometimes we need to import some data from anothe...

Webpack file packaging error exception

Before webpack packaging, we must ensure that the...

Vue monitoring properties and calculated properties

Table of contents 1. watch monitoring properties ...

Design theory: people-oriented design concept

<br />When thoughts were divided into East a...

Vue3 draggable left and right panel split component implementation

Table of contents Breaking down components Left P...

Guide to using env in vue cli

Table of contents Preface Introduction-Official E...

How to install docker on ubuntu20.04 LTS

Zero: Uninstall old version Older versions of Doc...

Summary of js execution context and scope

Table of contents Preface text 1. Concepts relate...

Videojs+swiper realizes Taobao product details carousel

This article shares the specific code of videojs+...

How to run the springboot project in docker

1. Click Terminal below in IDEA and enter mvn cle...