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:
|
<<: How to open a page in an iframe
>>: Building command line applications with JavaScript
Mysql8.0.12 decompression version installation me...
Problem description: After executing docker run -...
This article shares the specific code of Vue usin...
This is a collection of commonly used but easily ...
Table of contents Preface: Step 1: Find the free ...
<br />From the launch of NetEase's new h...
Table of contents Mainly used Postman functions D...
Table of contents What is an index The difference...
Today I will introduce two HTML tags that I don’t...
The 10-day tutorial uses the most understandable ...
CHAR and VARCHAR types are similar, differing pri...
1. Background During the server development proce...
When learning kubernetes, we need to practice in ...
Configure Java environment variables Here, the en...