dev-lu / osint_toolkit

A full stack web application that combines many tools and services for security analysts into a single tool.
MIT License
479 stars 81 forks source link

Server Backend error Network #27

Closed ghossh12 closed 5 months ago

ghossh12 commented 5 months ago

Hello ,

I have a problem after deploying ONSINT_TOOLKITS on docker here is how the page displays , osi,nt_toolkits Voici mon fichier de configuration docker :

version: "3.3" services: backend: build: ./backend container_name: backend ports:

dev-lu commented 5 months ago

You changed the container's port and the host port at the same time, that is why it's not working. You should only change the host port:

ports:
- "8010:8000"
ghossh12 commented 5 months ago

Thank you, it works now, but do you have an alternative to secure access to the web interface?

dev-lu commented 5 months ago

This software is designed for local use only, as it lacks an authentication system. It's not recommended to deploy it publicly, which is why HTTPS isn't necessary. If you need HTTPS anyway, using a reverse proxy would be the recommended approach.