1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/nginad/nginx.conf

32 lines
612 B
Nginx Configuration File
Raw Normal View History

2015-09-18 10:39:27 +00:00
user nobody;
worker_processes 4;
2016-07-21 08:11:52 +00:00
pid /run/nginx.pid;
2015-09-18 09:05:05 +00:00
events {
2015-09-18 10:39:27 +00:00
worker_connections 1024;
2015-09-18 09:05:05 +00:00
}
http {
2015-09-18 10:39:27 +00:00
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
2015-09-18 09:05:05 +00:00
server {
2015-09-18 10:39:27 +00:00
listen 80;
server_name _;
2015-09-24 01:20:57 +00:00
client_max_body_size 4M;
client_body_buffer_size 128k;
2015-09-18 10:39:27 +00:00
root /var/www/html/upload/public;
try_files $uri @php_index;
2015-09-18 09:05:05 +00:00
2015-09-18 10:39:27 +00:00
location @php_index {
2015-09-18 09:05:05 +00:00
include fastcgi_params;
2015-09-18 10:39:27 +00:00
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
2015-09-18 09:05:05 +00:00
fastcgi_pass 127.0.0.1:9000;
}
}
}