I just starting to look into ColdBox and have just gone through the Quick Start (https://coldbox.ortusbooks.com/getting-started/getting-started-guide) and added #getSetting("APPNAME")# to the hello.index
Using CommandBox "start server" on my dev machine it starts it's internal server at port 55700 (which cannot get out of the firewall) and I get the expected output (see the first image) in which it is pulling the APPNAME from the .env file
Using my typical setup in which IIS servers everything on is served on either port 80 or 443) the APPNAME is coming from config/Coldbox.cfc (see 2nd image).
Even though the pages are all rendering via IIS (even if I do "server stop") in CommandBox, the variables do not seem to be correct.
Has anyone experienced this or know what I am doing wrong?
Code for that page in both screenshots
<cfoutput>
<h1>hello.index</h1>
#now()#
<div class="alert alert-danger">#getSetting("APPNAME")#</div>
<div class="alert alert-success">#getSetting("ENVIRONMENT")#</div>
<cfdump var="#application#" expand="false">
</cfoutput>


Make sure you are using the same web context: In the first image you are accessing 127.0.0.1, in the second a FQDN. That would work as same context only if you define one as alias at servlets host configuration level. Crosscheck the AccessLogs if possible webcontext are equally hit by your client.