simpletemplate.lpr 211 B

123456789101112131415
  1. program simpletemplate;
  2. {$mode objfpc}{$H+}
  3. uses
  4. fpFCGI, webmodule;
  5. {$R *.res}
  6. begin
  7. Application.Port:=2015;//Port the FCGI application is listening on
  8. Application.Initialize;
  9. Application.Run;
  10. end.