blob: a7c82f74b994893c59b0a96aeb90ba8c8e58cade (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# IT-kariera Exam Template
A template that could be useful for the final IT-kariera exam in 2021
## Notes
There are some configs that I've made that you may want to revert. This section explains them.
### Disabled HTTPS
Disabled, since certificates could cause issues on some systems. To revert:
1. Add `app.UseHttpsRedirection();` in the `Configure` method, inside `ExamTemplate/Web/Startup.cs`
2. Add `https://localhost:5001;` in `"applicationUrl"` in the `Web` section, inside `ExamTemplate/Web/Properties/launchSettings.json`.
So, line 21 in the `launchSettings.json` file should look like: `"applicationUrl": "https://localhost:5001;http://localhost:5000",`
|