Skip to content

Commit d8a431d

Browse files
authored
修改文件夹名
1 parent 061b41d commit d8a431d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3
-3
lines changed

Dockerfile.heroku

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WORKDIR /app
1111
COPY . ./
1212

1313
COPY ./heroku/nginx.template.conf ./
14-
COPY ./heroku/html ./html/
14+
COPY ./heroku/web ./web/
1515

1616
RUN set -eux \
1717
&& apk update \

heroku/nginx.template.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ http {
1515
server {
1616
listen $PORT;
1717

18-
root /app/html;
18+
root /app/web;
1919

2020
location / {
2121
index index.php index.html index.htm;
@@ -27,7 +27,7 @@ http {
2727
fastcgi_pass 127.0.0.1:9000;
2828
fastcgi_index index.php;
2929
include /etc/nginx/fastcgi_params;
30-
fastcgi_param SCRIPT_FILENAME /app/html/$fastcgi_script_name;
30+
fastcgi_param SCRIPT_FILENAME /app/web/$fastcgi_script_name;
3131
fastcgi_param PATH_INFO $fastcgi_path_info;
3232
}
3333
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)