Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,16 @@ chmod +x gosint
```
./gosint
```

> GOSINT should start and then error out trying to connect to the database if MongoDB has not yet been installed.

- Prepare the website

```
exit
sudo mkdir /var/www/gosint
cp -r /home/gosint/projects/src/GOSINT/website/* /var/www/gosint/
```

Install MongoDB and ensure it is ONLY listening on your local loopback interface (127.0.0.1/localhost) if you are running it on the same host as GOSINT. Allowing your database to listen on any externally facing ports is a security risk, and should not be done without proper precautions taken to prevent unauthorized access.

You can use aptitude to install an older version with the command ```sudo apt-get install mongodb``` or you can follow the instructions at https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ to install a more up to date version from the MongoDB repositories.
Expand All @@ -110,7 +117,7 @@ server {
ssl_certificate_key /etc/nginx/ssl/nginx.key;
listen 443 ssl;

root /var/wwwroot;
root /var/www/gosint;
index index.php index.html index.htm;
try_files $uri $uri/ @apachesite;

Expand Down