mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 18:06:56 +08:00
feat: openresty 更新到 1.21.4.1
This commit is contained in:
parent
3af7090d84
commit
a0fcbfe67f
13
apps/openresty/versions/1.21.4.1/conf/fastcgi-php.conf
Normal file
13
apps/openresty/versions/1.21.4.1/conf/fastcgi-php.conf
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# regex to split $uri to $fastcgi_script_name and $fastcgi_path
|
||||||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
|
|
||||||
|
# Check that the PHP script exists before passing it
|
||||||
|
try_files $fastcgi_script_name =404;
|
||||||
|
|
||||||
|
# Bypass the fact that try_files resets $fastcgi_path_info
|
||||||
|
# see: http://trac.nginx.org/nginx/ticket/321
|
||||||
|
set $path_info $fastcgi_path_info;
|
||||||
|
#fastcgi_param PATH_INFO $path_info;
|
||||||
|
fastcgi_read_timeout 3600;
|
||||||
|
|
||||||
|
fastcgi_index index.php;
|
24
apps/openresty/versions/1.21.4.1/conf/fastcgi_params
Normal file
24
apps/openresty/versions/1.21.4.1/conf/fastcgi_params
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
fastcgi_param QUERY_STRING $query_string;
|
||||||
|
fastcgi_param REQUEST_METHOD $request_method;
|
||||||
|
fastcgi_param CONTENT_TYPE $content_type;
|
||||||
|
fastcgi_param CONTENT_LENGTH $content_length;
|
||||||
|
|
||||||
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||||||
|
fastcgi_param REQUEST_URI $request_uri;
|
||||||
|
fastcgi_param DOCUMENT_URI $document_uri;
|
||||||
|
fastcgi_param DOCUMENT_ROOT $document_root;
|
||||||
|
fastcgi_param SERVER_PROTOCOL $server_protocol;
|
||||||
|
fastcgi_param REQUEST_SCHEME $scheme;
|
||||||
|
fastcgi_param HTTPS $https if_not_empty;
|
||||||
|
|
||||||
|
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
|
||||||
|
fastcgi_param SERVER_SOFTWARE nginx;
|
||||||
|
|
||||||
|
fastcgi_param REMOTE_ADDR $remote_addr;
|
||||||
|
fastcgi_param REMOTE_PORT $remote_port;
|
||||||
|
fastcgi_param SERVER_ADDR $server_addr;
|
||||||
|
fastcgi_param SERVER_PORT $server_port;
|
||||||
|
fastcgi_param SERVER_NAME $server_name;
|
||||||
|
|
||||||
|
# PHP only, required if PHP was built with --enable-force-cgi-redirect
|
||||||
|
fastcgi_param REDIRECT_STATUS 200;
|
@ -7,6 +7,8 @@ services:
|
|||||||
network_mode: host
|
network_mode: host
|
||||||
volumes:
|
volumes:
|
||||||
- ./conf/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf
|
- ./conf/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf
|
||||||
|
- ./conf/fastcgi_params:/usr/local/openresty/nginx/conf/fastcgi_params
|
||||||
|
- ./conf/fastcgi-php.conf:/usr/local/openresty/nginx/conf/fastcgi-php.conf
|
||||||
- ./log:/var/log/nginx
|
- ./log:/var/log/nginx
|
||||||
- ./conf/conf.d:/usr/local/openresty/nginx/conf/conf.d/
|
- ./conf/conf.d:/usr/local/openresty/nginx/conf/conf.d/
|
||||||
- ./www:/www
|
- ./www:/www
|
Loading…
Reference in New Issue
Block a user