aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/httpd/etc/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/httpd/etc/nginx/nginx.conf')
-rw-r--r--src/benchmarks/httpd/etc/nginx/nginx.conf115
1 files changed, 115 insertions, 0 deletions
diff --git a/src/benchmarks/httpd/etc/nginx/nginx.conf b/src/benchmarks/httpd/etc/nginx/nginx.conf
new file mode 100644
index 0000000..278ea0b
--- /dev/null
+++ b/src/benchmarks/httpd/etc/nginx/nginx.conf
@@ -0,0 +1,115 @@
+#user html;
+worker_processes 1;
+daemon off;
+
+
+error_log OBJDIR/logs/nginx-error.log;
+error_log OBJDIR/logs/nginx-error.log notice;
+error_log OBJDIR/logs/nginx-error.log info;
+
+pid OBJDIR/run/nginx.pid;
+
+
+events {
+ worker_connections 1024;
+}
+
+
+http {
+ log_format main '$remote_addr - $remote_user [$time_local] "$request" '
+ '$status $body_bytes_sent "$http_referer" '
+ '"$http_user_agent" "$http_x_forwarded_for"';
+
+ access_log OBJDIR/logs/nginx-access.log main;
+
+ sendfile on;
+ #tcp_nopush on;
+
+ #keepalive_timeout 0;
+ keepalive_timeout 65;
+
+ #gzip on;
+
+ server {
+ listen 8080;
+ server_name localhost;
+
+ location / {
+ root OBJDIR/html;
+ index index.html index.htm;
+ }
+
+ location ~ [^/]\.php(/|$) {
+ root OBJDIR/html;
+ # Correctly handle request like /test.php/foo/blah.php or /test.php/
+ fastcgi_split_path_info ^(.+?\.php)(/.*)$;
+
+ try_files $uri $document_root$fastcgi_script_name =404;
+
+ # Mitigate https://httpoxy.org/ vulnerabilities
+ fastcgi_param HTTP_PROXY "";
+
+ fastcgi_pass unix:OBJDIR/php-socket;
+ fastcgi_index index.php;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+
+ # fastcgi_params from arch linux nginx install
+ 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_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 REQUEST_SCHEME $scheme;
+ fastcgi_param HTTPS $https if_not_empty;
+
+ fastcgi_param GATEWAY_INTERFACE CGI/1.1;
+ fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
+
+ 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;
+
+ # PHP only, required if PHP was built with --enable-force-cgi-redirect
+ fastcgi_param REDIRECT_STATUS 200;
+ }
+
+ #error_page 404 /404.html;
+
+ # redirect server error pages to the static page /50x.html
+ #
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+ }
+
+ # HTTPS server
+ #
+ #server {
+ # listen 443 ssl;
+ # server_name localhost;
+
+ # ssl_certificate cert.pem;
+ # ssl_certificate_key cert.key;
+
+ # ssl_session_cache shared:SSL:1m;
+ # ssl_session_timeout 5m;
+
+ # ssl_ciphers HIGH:!aNULL:!MD5;
+ # ssl_prefer_server_ciphers on;
+
+ # location / {
+ # root html;
+ # index index.html index.htm;
+ # }
+ #}
+
+}