I would like to replace my nginx server with OpenLiteSpeed completely but I've hit one problem:
there is a python application on a seperate server which nginx serves as a reverse proxy with the folowing config:
server {
client_max_body_size 250M;
listen 443 ssl;
server_name xxxxxxxxxxxxxxxxxxx
ssl_certificate /etc/ssl/xxxxxxxxxxxxxx.crt;
ssl_certificate_key /etc/ssl/xxxxxxxxxxxxx.key;
location / {
include uwsgi_params;
uwsgi_pass xxx.xxx.xxx.xxx:xxxx;
}
}
Can Litespeed do something similar to uwsgi_pass?
there is a python application on a seperate server which nginx serves as a reverse proxy with the folowing config:
server {
client_max_body_size 250M;
listen 443 ssl;
server_name xxxxxxxxxxxxxxxxxxx
ssl_certificate /etc/ssl/xxxxxxxxxxxxxx.crt;
ssl_certificate_key /etc/ssl/xxxxxxxxxxxxx.key;
location / {
include uwsgi_params;
uwsgi_pass xxx.xxx.xxx.xxx:xxxx;
}
}
Can Litespeed do something similar to uwsgi_pass?