Skip to content

Commit

Permalink
Merge pull request #308 from nurfed1/bug_fixes
Browse files Browse the repository at this point in the history
Small bug fixes
  • Loading branch information
MarcOverIP committed Feb 1, 2024
2 parents 5e49ef6 + 2ca16b6 commit 4b39f72
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elkserver/install-elkserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ if [ $DRYRUN == "no" ]; then
if [ ${WHATTOINSTALL} != "limited" ]; then
echo " - Jupyter notebooks on /jupyter (user: redelk, pass:$CREDS_redelk)" | tee -a $LOGFILE
echo " - Bloodhound community edition on https port 8443 (user: admin, pass:$BLOODHOUND_PASSWORD)" | tee -a $LOGFILE
echo " - Neo4J Browser port 7473 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
echo " - Neo4J Browser port 7474 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
echo " - Neo4J using the BloodHound app on port 7687 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
fi
echo "" | tee -a $LOGFILE
Expand Down
5 changes: 4 additions & 1 deletion elkserver/mounts/nginx-config/full.bloodhound-conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ server {
# verify chain of trust of OCSP response using Root CA and Intermediate certs
ssl_trusted_certificate ${TLS_NGINX_CA_PATH};

# Increase upload limit
client_max_body_size 1500M;

location / {
#auth_basic "Restricted Access";
#auth_basic_user_file /etc/nginx/conf.d/htpasswd.users;
Expand All @@ -59,4 +62,4 @@ server {
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
}
}
4 changes: 2 additions & 2 deletions elkserver/redelk-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ services:
volumes:
- bloodhound_data:/data
ports:
- "${NEO4J_DB_PORT}:7474"
- "${NEO4J_WEB_PORT}:7687"
- "${NEO4J_WEB_PORT}:7474"
- "${NEO4J_DB_PORT}:7687"
environment:
- NEO4J_AUTH=${NEO4J_AUTH}
- NEO4J_dbms_memory_heap_initial__size=${NEO4J_dbms_memory_heap_initial__size}
Expand Down

0 comments on commit 4b39f72

Please sign in to comment.