parent
43d957f78b
commit
4d7a5e6f52
@ -1,2 +1,3 @@ |
||||
.idea |
||||
*.iml |
||||
*.iml |
||||
.env |
@ -0,0 +1,18 @@ |
||||
server { |
||||
listen 80; |
||||
server_name example.com; |
||||
root /var/www/http/example; |
||||
location / { |
||||
index index.php index.html error/index.html; |
||||
autoindex off; |
||||
} |
||||
location ~ \.php(.*)$ { |
||||
fastcgi_pass php7.4:9000; |
||||
fastcgi_index index.php; |
||||
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; |
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
||||
fastcgi_param PATH_INFO $fastcgi_path_info; |
||||
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; |
||||
include fastcgi_params; |
||||
} |
||||
} |
@ -0,0 +1,6 @@ |
||||
FROM nginx:alpine |
||||
MAINTAINER tradewind |
||||
RUN sed -i \ |
||||
's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' \ |
||||
/etc/apk/repositories && apk update |
||||
WORKDIR /var/www/http/ |
@ -0,0 +1,9 @@ |
||||
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free |
Loading…
Reference in new issue