Files
sharex-php-uploader/docker/nginx.conf

68 lines
1.6 KiB
Nginx Configuration File
Raw Normal View History

2023-07-04 16:39:08 +01:00
events {
worker_connections 4096;
}
http {
2023-07-04 16:46:10 +01:00
access_log /dev/stdout;
2023-07-04 16:56:47 +01:00
error_log /dev/stdout;
2023-07-04 17:56:28 +01:00
2023-07-07 23:44:07 +01:00
log_format main '[$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
2023-07-04 17:46:31 +01:00
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 15;
types_hash_max_size 4096;
2023-07-04 16:46:10 +01:00
2023-07-04 16:37:53 +01:00
server {
server_name _;
listen 80;
2023-07-04 17:46:31 +01:00
2023-07-04 16:37:53 +01:00
root /var/www/html;
index index.html index.htm;
2023-07-07 23:37:39 +01:00
# TCP optimizations
tcp_nopush on;
tcp_nodelay on;
# Gzip
sendfile on;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 8;
gzip_buffers 16 64k;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
2023-07-04 17:56:28 +01:00
client_max_body_size 500M; # Will get replaced by the environment variable MAX_UPLOAD_SIZE
2023-07-04 16:37:53 +01:00
2023-07-05 00:50:30 +01:00
location /upload.php {
2023-07-04 16:37:53 +01:00
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
2023-07-04 17:02:32 +01:00
fastcgi_pass unix:/run/php/php8.1-fpm.sock;
2023-07-04 16:37:53 +01:00
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}
location / {
expires 7d;
2023-07-07 23:37:39 +01:00
open_file_cache max=1000 inactive=60s;
open_file_cache_valid 60s;
open_file_cache_min_uses 1;
open_file_cache_errors on;
2023-07-04 16:37:53 +01:00
# Serve the file directly from disk
2023-07-05 01:01:54 +01:00
try_files $uri $uri/ =404;
2023-07-04 16:37:53 +01:00
}
2023-07-07 23:41:23 +01:00
}
2023-07-04 16:37:53 +01:00
}