29 lines
1007 B
Plaintext
29 lines
1007 B
Plaintext
# Custom nginx configuration for OpenCCB Learning
|
|
# Keep the learning frontend on port 3003 and expose LMS API via same-origin /lms-api.
|
|
|
|
location /lms-api/ {
|
|
rewrite ^/lms-api/(.*)$ /$1 break;
|
|
proxy_pass http://openccb-experience:3002;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
|
proxy_set_header Connection "";
|
|
proxy_http_version 1.1;
|
|
}
|
|
|
|
location /cms-api/ {
|
|
rewrite ^/cms-api/(.*)$ /$1 break;
|
|
proxy_pass http://openccb-studio:3001;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
|
|
proxy_set_header Connection "";
|
|
proxy_http_version 1.1;
|
|
proxy_connect_timeout 60s;
|
|
proxy_send_timeout 600s;
|
|
proxy_read_timeout 600s;
|
|
send_timeout 600s;
|
|
}
|