diff --git a/docroot/fastcgi_params b/docroot/fastcgi_params new file mode 100644 index 0000000..d1862e9 --- /dev/null +++ b/docroot/fastcgi_params @@ -0,0 +1,19 @@ +fastcgi_param GATEWAY_INTERFACE CGI/1.1; +fastcgi_param SERVER_SOFTWARE nginx; +fastcgi_param QUERY_STRING $query_string; +fastcgi_param REQUEST_METHOD $request_method; +fastcgi_param CONTENT_TYPE $content_type; +fastcgi_param CONTENT_LENGTH $content_length; +fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; +fastcgi_param SCRIPT_NAME $fastcgi_script_name; +fastcgi_param REQUEST_URI $request_uri; +fastcgi_param DOCUMENT_URI $document_uri; +fastcgi_param DOCUMENT_ROOT $document_root; +fastcgi_param SERVER_PROTOCOL $server_protocol; +fastcgi_param REMOTE_ADDR $remote_addr; +fastcgi_param REMOTE_PORT $remote_port; +fastcgi_param SERVER_ADDR $server_addr; +fastcgi_param SERVER_PORT $server_port; +fastcgi_param SERVER_NAME $server_name; + +# vim:filetype=nginx diff --git a/docroot/lighttpd.conf b/docroot/lighttpd.conf deleted file mode 100644 index 11a553f..0000000 --- a/docroot/lighttpd.conf +++ /dev/null @@ -1,17 +0,0 @@ -server.document-root = env.VIRTUAL_ENV + "/src/docroot/html" -server.port = 49449 -server.modules = ("mod_setenv", "mod_cgi", "mod_access", "mod_accesslog") -server.indexfiles = ("index.txt", "index.html", "index.php") -server.pid-file = env.VIRTUAL_ENV + "/src/docroot/server.pid" -server.errorlog = env.VIRTUAL_ENV + "/src/docroot/error.log" - -# to enable, add "mod_access", "mod_accesslog" to server.modules -# variable above and uncomment this -accesslog.filename = env.VIRTUAL_ENV + "/src/docroot/access.log" - -setenv.add-environment = ("PATH" => env.PATH) - -cgi.assign = ( - ".cgi" => "", - ".php" => "/usr/bin/php-cgi" -) diff --git a/docroot/mime.types b/docroot/mime.types new file mode 100644 index 0000000..808160d --- /dev/null +++ b/docroot/mime.types @@ -0,0 +1,71 @@ + +types { + text/html html htm shtml; + text/css css; + text/xml xml rss; + image/gif gif; + image/jpeg jpeg jpg; + application/x-javascript js; + application/atom+xml atom; + + text/mathml mml; + text/plain txt; + text/vnd.sun.j2me.app-descriptor jad; + text/vnd.wap.wml wml; + text/x-component htc; + + image/png png; + image/tiff tif tiff; + image/vnd.wap.wbmp wbmp; + image/x-icon ico; + image/x-jng jng; + image/x-ms-bmp bmp; + image/svg+xml svg svgz; + + application/java-archive jar war ear; + application/mac-binhex40 hqx; + application/msword doc; + application/pdf pdf; + application/postscript ps eps ai; + application/rtf rtf; + application/vnd.ms-excel xls; + application/vnd.ms-powerpoint ppt; + application/vnd.wap.wmlc wmlc; + application/vnd.wap.xhtml+xml xhtml; + application/x-7z-compressed 7z; + application/x-cocoa cco; + application/x-java-archive-diff jardiff; + application/x-java-jnlp-file jnlp; + application/x-makeself run; + application/x-perl pl pm; + application/x-pilot prc pdb; + application/x-rar-compressed rar; + application/x-redhat-package-manager rpm; + application/x-sea sea; + application/x-shockwave-flash swf; + application/x-stuffit sit; + application/x-tcl tcl tk; + application/x-x509-ca-cert der pem crt; + application/x-xpinstall xpi; + application/zip zip; + + application/octet-stream bin exe dll; + application/octet-stream deb; + application/octet-stream dmg; + application/octet-stream eot; + application/octet-stream iso img; + application/octet-stream msi msp msm; + + audio/midi mid midi kar; + audio/mpeg mp3; + audio/x-realaudio ra; + + video/3gpp 3gpp 3gp; + video/mpeg mpeg mpg; + video/quicktime mov; + video/x-flv flv; + video/x-mng mng; + video/x-ms-asf asx asf; + video/x-ms-wmv wmv; + video/x-msvideo avi; +} diff --git a/docroot/nginx-serve b/docroot/nginx-serve new file mode 100755 index 0000000..50beb58 --- /dev/null +++ b/docroot/nginx-serve @@ -0,0 +1,3 @@ +#!/bin/bash +HERE="$(dirname $(readlink -f $0))" +exec nginx -p $HERE/ -c $HERE/nginx.conf diff --git a/docroot/nginx.conf b/docroot/nginx.conf new file mode 100644 index 0000000..2458611 --- /dev/null +++ b/docroot/nginx.conf @@ -0,0 +1,42 @@ +worker_processes 1; +error_log error.log; +pid server.pid; +worker_rlimit_nofile 8192; +daemon off; + + +events { + worker_connections 4096; +} + + +http { + include mime.types; + + default_type application/octet-stream; + log_format main '$remote_addr - $remote_user [$time_local] $status ' + '"$request" $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + sendfile on; + tcp_nopush on; + autoindex on; + + server { + listen 49448; + server_name localhost; + access_log access.log main; + root /home/me/src/LearningPhp/src/docroot/html; + + location / { + index index.html index.txt index.php; + } + + location ~ \.php$ { + include fastcgi_params; + fastcgi_pass 127.0.0.1:49449; + } + } +} + + +# vim:filetype=nginx diff --git a/docroot/php-serve b/docroot/php-serve new file mode 100755 index 0000000..b69fb3c --- /dev/null +++ b/docroot/php-serve @@ -0,0 +1,2 @@ +#!/bin/bash +exec php-cgi -b 127.0.0.1:49449