Using Prodigy with a ProxyPass

@elly Thanks Ellen, that worked for me too!

In case someone else stumbles upon this thread looking for a solution for Nginx, it’s straight forward based on Ellen’s post:

location /annotate/ {
    proxy_pass http://localhost:8080/;
}
location /project {
    proxy_pass http://localhost:8080/project;
}
location /get_questions {
    proxy_pass http://localhost:8080/get_questions;
}
location /give_answers {
    proxy_pass http://localhost:8080/give_answers;
}
location /fonts {
    proxy_pass http://localhost:8080/fonts;
}

Note: I also added the /fonts folder where prodigy gets a few fonts.

1 Like