Skip to content

Commit 4b39f72

Browse files
authoredFeb 1, 2024··
Merge pull request outflanknl#308 from nurfed1/bug_fixes
Small bug fixes
2 parents 5e49ef6 + 2ca16b6 commit 4b39f72

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed
 

‎elkserver/install-elkserver.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ if [ $DRYRUN == "no" ]; then
801801
if [ ${WHATTOINSTALL} != "limited" ]; then
802802
echo " - Jupyter notebooks on /jupyter (user: redelk, pass:$CREDS_redelk)" | tee -a $LOGFILE
803803
echo " - Bloodhound community edition on https port 8443 (user: admin, pass:$BLOODHOUND_PASSWORD)" | tee -a $LOGFILE
804-
echo " - Neo4J Browser port 7473 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
804+
echo " - Neo4J Browser port 7474 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
805805
echo " - Neo4J using the BloodHound app on port 7687 (user: neo4j, pass:$NEO4J_PASSWORD)" | tee -a $LOGFILE
806806
fi
807807
echo "" | tee -a $LOGFILE

‎elkserver/mounts/nginx-config/full.bloodhound-conf.template

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ server {
3737
# verify chain of trust of OCSP response using Root CA and Intermediate certs
3838
ssl_trusted_certificate ${TLS_NGINX_CA_PATH};
3939

40+
# Increase upload limit
41+
client_max_body_size 1500M;
42+
4043
location / {
4144
#auth_basic "Restricted Access";
4245
#auth_basic_user_file /etc/nginx/conf.d/htpasswd.users;
@@ -59,4 +62,4 @@ server {
5962
proxy_send_timeout 60s;
6063
proxy_read_timeout 60s;
6164
}
62-
}
65+
}

‎elkserver/redelk-full.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ services:
266266
volumes:
267267
- bloodhound_data:/data
268268
ports:
269-
- "${NEO4J_DB_PORT}:7474"
270-
- "${NEO4J_WEB_PORT}:7687"
269+
- "${NEO4J_WEB_PORT}:7474"
270+
- "${NEO4J_DB_PORT}:7687"
271271
environment:
272272
- NEO4J_AUTH=${NEO4J_AUTH}
273273
- NEO4J_dbms_memory_heap_initial__size=${NEO4J_dbms_memory_heap_initial__size}

0 commit comments

Comments
 (0)
Please sign in to comment.