mirror of
https://github.com/linuxserver/docker-diskover.git
synced 2026-01-20 20:01:59 +08:00
39 lines
951 B
Plaintext
39 lines
951 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
|
|
listen 443 ssl;
|
|
|
|
root /app/www/public;
|
|
index index.php index.html index.htm;
|
|
|
|
server_name _;
|
|
|
|
ssl_certificate /config/keys/cert.crt;
|
|
ssl_certificate_key /config/keys/cert.key;
|
|
|
|
client_max_body_size 0;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
# # unless the request is for a valid file (image, js, css, etc.), send to bootstrap
|
|
# if (!-e $request_filename)
|
|
# {
|
|
# rewrite ^/(.*)$ /index.php?/$1 last;
|
|
# break;
|
|
# }
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_index index.php;
|
|
include /etc/nginx/fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_intercept_errors off;
|
|
fastcgi_buffer_size 16k;
|
|
fastcgi_buffers 4 16k;
|
|
fastcgi_read_timeout 300;
|
|
}
|
|
}
|