53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
server {
|
|
listen 8081;
|
|
listen [::]:8081;
|
|
|
|
server_name _;
|
|
set $base /var/www/onebot;
|
|
root $base/public;
|
|
|
|
access_log /var/log/nginx/onebot.access.log;
|
|
error_log /var/log/nginx/onebot.error.log warn;
|
|
|
|
index index.php;
|
|
|
|
client_max_body_size 64M;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$args;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $fastcgi_script_name =404;
|
|
include fastcgi_params;
|
|
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
|
|
fastcgi_index index.php;
|
|
fastcgi_buffers 8 16k;
|
|
fastcgi_buffer_size 32k;
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
}
|
|
|
|
location = /favicon.ico {
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
|
|
location = /robots.txt {
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
|
|
location ^~ /dist/ {
|
|
expires 7d;
|
|
access_log off;
|
|
}
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_min_length 1024;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/javascript;
|
|
gzip_disable "MSIE [1-6]\.";
|
|
}
|