File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -801,7 +801,7 @@ if [ $DRYRUN == "no" ]; then
801
801
if [ ${WHATTOINSTALL} != " limited" ]; then
802
802
echo " - Jupyter notebooks on /jupyter (user: redelk, pass:$CREDS_redelk )" | tee -a $LOGFILE
803
803
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
805
805
echo " - Neo4J using the BloodHound app on port 7687 (user: neo4j, pass:$NEO4J_PASSWORD )" | tee -a $LOGFILE
806
806
fi
807
807
echo " " | tee -a $LOGFILE
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ server {
37
37
# verify chain of trust of OCSP response using Root CA and Intermediate certs
38
38
ssl_trusted_certificate ${TLS_NGINX_CA_PATH};
39
39
40
+ # Increase upload limit
41
+ client_max_body_size 1500M;
42
+
40
43
location / {
41
44
#auth_basic "Restricted Access";
42
45
#auth_basic_user_file /etc/nginx/conf.d/htpasswd.users;
@@ -59,4 +62,4 @@ server {
59
62
proxy_send_timeout 60s;
60
63
proxy_read_timeout 60s;
61
64
}
62
- }
65
+ }
Original file line number Diff line number Diff line change @@ -266,8 +266,8 @@ services:
266
266
volumes :
267
267
- bloodhound_data:/data
268
268
ports :
269
- - " ${NEO4J_DB_PORT }:7474"
270
- - " ${NEO4J_WEB_PORT }:7687"
269
+ - " ${NEO4J_WEB_PORT }:7474"
270
+ - " ${NEO4J_DB_PORT }:7687"
271
271
environment :
272
272
- NEO4J_AUTH=${NEO4J_AUTH}
273
273
- NEO4J_dbms_memory_heap_initial__size=${NEO4J_dbms_memory_heap_initial__size}
You can’t perform that action at this time.
0 commit comments