1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-16 11:37:32 +02:00
dockerfiles/nginad/nginx.conf

27 lines
519 B
Nginx Configuration File
Raw Normal View History

2015-09-18 12:39:27 +02:00
user nobody;
worker_processes 4;
2015-09-18 11:05:05 +02:00
events {
2015-09-18 12:39:27 +02:00
worker_connections 1024;
2015-09-18 11:05:05 +02:00
}
http {
2015-09-18 12:39:27 +02:00
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
2015-09-18 11:05:05 +02:00
server {
2015-09-18 12:39:27 +02:00
listen 80;
server_name _;
root /var/www/html/upload/public;
try_files $uri @php_index;
2015-09-18 11:05:05 +02:00
2015-09-18 12:39:27 +02:00
location @php_index {
2015-09-18 11:05:05 +02:00
include fastcgi_params;
2015-09-18 12:39:27 +02:00
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
2015-09-18 11:05:05 +02:00
fastcgi_pass 127.0.0.1:9000;
}
}
}