fileupload.lpr 205 B

1234567891011121314
  1. program fileupload;
  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.