Run the application server after specific route #8196
-
I am deploying the defect-dojo using the README.md guide. The thing I am looking for is to host the application at specific route for example Your answers are highly appreciated. Thanks for the support. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Later on I figured out how to host DefectDojo at a particular route. To host DefectDojo at a specific route, such as
"URL_PREFIX": "dojo/",
./manage.py loaddata system_settings.json This will ensure that the modified URL_PREFIX value is applied. Once you have completed these steps, you should be able to access DefectDojo at the specified route, i.e., http://localhost:8080/dojo/. |
Beta Was this translation helpful? Give feedback.
Later on I figured out how to host DefectDojo at a particular route.
To host DefectDojo at a specific route, such as
http://localhost:8080/dojo/
, you can follow these steps:This will ensure that the modified …