rep init
This commit is contained in:
commit
9767c6bddc
22 changed files with 551 additions and 0 deletions
16
default.conf
Normal file
16
default.conf
Normal file
|
@ -0,0 +1,16 @@
|
|||
server {
|
||||
listen 80 default_server;
|
||||
root /app/public;
|
||||
|
||||
index index.php index.html index.htm;
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass php:9000;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
include fastcgi_params;
|
||||
}
|
||||
proxy_send_timeout 9999s;
|
||||
proxy_read_timeout 9999s;
|
||||
fastcgi_send_timeout 9999s;
|
||||
fastcgi_read_timeout 9999s;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue