You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The home page gives the spinner and nothing else when using nginx reverse proxy.
To Reproduce
I installed docker on Ubuntu 22.04
I install Perplexica using the docker method and added my openAI key to the toml file.
Here's my nginx reverse proxy settings.
`
server {
listen 80;
server_name perplexica.ragfix.ai;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name perplexica.ragfix.ai;
Overall, current architecture make it unhostable for external access - communication between services needs to be both publicly available and unencrypted.
Describe the bug
The home page gives the spinner and nothing else when using nginx reverse proxy.
To Reproduce
I installed docker on Ubuntu 22.04
I install Perplexica using the docker method and added my openAI key to the toml file.
Here's my nginx reverse proxy settings.
`
server {
listen 80;
server_name perplexica.ragfix.ai;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name perplexica.ragfix.ai;
}
`
Expected behavior
I expected to be able to use Perplexica via https://perplexica.ragfix.ai.
Screenshots
Screenshot attached.
The text was updated successfully, but these errors were encountered: