Information Classification: External Restricted.
See https://www.chili-publish.com/security

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

When using a NGINX web server, adding a reverse proxy for the CHILI server is extremely simple.

In your NGINX web server configuration file (in linux, this can be usually found in /etc/nginx/sites-available/yoursite-config), you will just need to add the following to your server block:

server {
 
    # ...
 
    location /CHILI/ {
        proxy_pass http://www.yourserver.com/CHILI/;
    }
 
	# ...
 
}

Warning

Please keep in mind that Linux, unline Mac OS X or Windows, is case-sensitive. So when NGINX is hosted on a linux OS, you will need to make sure that your URLs are using the same case as in the configuration.

Warning

NGINX reads the configuration and tries to match URLs from top to down. Please make sure that the /CHILI/ location is added in the appropriate order, to prevent NGINX from matching another location first.

 

More information and more cool stuff that can be done with NGINX can be found in their documentation:

https://www.nginx.com/resources/admin-guide/reverse-proxy/

  • No labels