├── .gitignore ├── FastCGI.groupproj ├── LICENSE ├── NGINX ├── NGINX.FCGIApplication.pas ├── NGINX.FCGIConstants.pas ├── NGINX.FCGIRecord.pas ├── NGINX.FCGIRequest.pas ├── NGINX.FCGIResponse.pas ├── NGINX.FCGIStream.pas ├── NGINX.FastCGI.dpr ├── NGINX.FastCGI.dproj ├── NGINX.FastCGI.res ├── NGINX.WebModule.pas └── ServerConst1.pas └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/.gitignore -------------------------------------------------------------------------------- /FastCGI.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/FastCGI.groupproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/LICENSE -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIApplication.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIApplication.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIConstants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIConstants.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIRecord.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIRecord.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIRequest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIRequest.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIResponse.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIResponse.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FCGIStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FCGIStream.pas -------------------------------------------------------------------------------- /NGINX/NGINX.FastCGI.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FastCGI.dpr -------------------------------------------------------------------------------- /NGINX/NGINX.FastCGI.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FastCGI.dproj -------------------------------------------------------------------------------- /NGINX/NGINX.FastCGI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.FastCGI.res -------------------------------------------------------------------------------- /NGINX/NGINX.WebModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/NGINX.WebModule.pas -------------------------------------------------------------------------------- /NGINX/ServerConst1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/NGINX/ServerConst1.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylixfans/FastCGI/HEAD/README.md --------------------------------------------------------------------------------