...
Please see Configuration Settings page for further details.
3. Check ports available.
By default emakin Emakin listens from 80, 443, 5000 port numbers by default. 80 and 443 used for standard web access. 5000 port is used for host administration panel access and must be accessible only from localhost.
If you have another application running on your server using same ports, you need to change port numbers from <installdir>/Configuration/appsettings.json
configuration file.
Expand |
---|
title | How to set web access port numbers |
---|
|
- Edit
<installdir>/Configuration/appsettings.json file. Add following setting in configuration file and change (http) 80 or (ssl) 443 numbers to free ports on your server. In this example we change http port to 800 and ssl port to 4430. Code Block |
---|
{
"Web": {
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:800"
},
"Https": {
"Url": "https://*:4430"
}
}
},
}
} |
|
Expand |
---|
title | How to set host administration port numbers |
---|
|
- Edit
<installdir>/Configuration/appsettings.json file. Add following setting in configuration file and change host administration (5000) to free ports on your server. In this example we change host administration to 5001. Code Block |
---|
{
"HostAdmin": {
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:5001"
}
}
},
}
} |
|