File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Please only use postgresql bound to a TCP port.
2
+ # Only postgresql is supportable for metasploit-framework
3
+ # these days. (No SQLite, no MySQL).
4
+ #
5
+ # To set up a metasploit database, follow the directions hosted at:
6
+ # https://fedoraproject.org/wiki/Metasploit_Postgres_Setup (Works on
7
+ # essentially any Linux distro, not just Fedora)
2
8
development: &pgsql
3
9
adapter: postgresql
4
10
database: metasploit_framework_development
@@ -9,6 +15,12 @@ development: &pgsql
9
15
pool: 5
10
16
timeout: 5
11
17
18
+ # You will often want to seperate your databases between dev
19
+ # mode and prod mode. Absent a production db, though, defaulting
20
+ # to dev is pretty sensible for many developer-users.
21
+ production: &production
22
+ <<: *pgsql
23
+
12
24
# Warning: The database defined as "test" will be erased and
13
25
# re-generated from your development database when you run "rake".
14
26
# Do not set this db to the same as development or production.
You can’t perform that action at this time.
0 commit comments