Commit dfa58bcf authored by PidgeyL's avatar PidgeyL
Browse files

fix links

parent 9c870aff
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -14,17 +14,17 @@ The settings for the web-server can be found under the head [Webserver]
| Port          | 5000               |  The port on which the web-server will be running  |
| Debug         | True               | When the server runs in [debug mode](#debug), SSL will be turned off and the web-server will be in *Blocking Mode* |
| PageLength    | 50                 | The amount of CVEs that will be displayed per page |
| LoginRequired | False              | Decides whether [users](#users) have to log in to access [admin pages](admin). |
| SSL           | False              | Decides whether SSL is used to secure the connection. See (SSL)[ssl] for more information on how to set this up |
| Certificate   | ssl/cve-search.crt | The certificate used for the SSL connection. More info under [SSL](ssl) |
| Key           | ssl/cve-search.key | The key used for the SSL connection. More info under [SSL](ssl) |
| LoginRequired | False              | Decides whether [users](#users) have to log in to access [admin pages](#admin). |
| SSL           | False              | Decides whether SSL is used to secure the connection. See [SSL](#ssl) for more information on how to set this up |
| Certificate   | ssl/cve-search.crt | The certificate used for the SSL connection. More info under [SSL](#ssl) |
| Key           | ssl/cve-search.key | The key used for the SSL connection. More info under [SSL](#ssl) |


##<a name="debug"/>Debug mode
Running the server in debug mode allows for easier development of the
 server. By setting this value on *True*, the server will only use the
 Flask module. This means that the server will be set to
 *Blocking Mode*, [SSL](ssl) will be disabled, overriding the
 *Blocking Mode*, [SSL](#ssl) will be disabled, overriding the
 configuration.ini settings, and the server will give more visual debug
 output. <br />
Setting this value on *False*, the server will take the default SSL
@@ -49,7 +49,7 @@ This script takes several parameters, as mentioned below:
| -a A       | name of user | Add a user account |
| -c C       | name of user | Change the password of a user |
| -r R       | name of user | Remove a user account |
| -p P       | name of user | Promote a user account to [Master](Master) |
| -p P       | name of user | Promote a user account to [Master](#master) |
| -d D       | name of user | Demote a user account to a normal user  |

###<a name="master"/>Master accounts
@@ -64,7 +64,7 @@ You can create a user account by using the command
 `Python3 db_mgmt_admin.py -a user`, where user is the name of your
 account. <br />
If this is the first account in the database, the script will not
 require a [Master](Master) password, and the account created will be a
 require a [Master](#master) password, and the account created will be a
 Master account.
If this is not the first account, the script will ask you to log in
 using a Master account, before you can proceed.<br />