New fpSimpleServer, notes
Commit https://gitlab.com/freepascal.org/fpc/source/-/commit/9352e09849d4ecce1f1dfae8948e864638d70e96
1.
- ServerVersion is too generic id. why not to prefix it?
- TParentApp id is too generic too
- TMyXXXX (`TMySimpleFileModule`) class name look strange in fcl-web component
2.
fpsimpleserver.pp
```
{$IFDEF USEMICROHTTP}
TParentApp = TCustomMicroHTTPApplication;
{$ELSE}
TParentApp = TCustomHTTPApplication;
{$ENDIF}
```
if USEMICROHTTP is enabled/disabled, fcl-web will not recompiled because it's precompiled in FPC distro. no?
issue