I am trying to configure Pega web UI through Nginx. I am getting the front page but, Pega CSS, images and js is not loading. Below is my configuration.
location /prweb/PRServlet/ {
rewrite ^/prweb/PRServlet/(.*)$ /pega/$1 redirect;
}
location /pega {
proxy_pass http://example.com:8083/prweb/PRServlet;
}