File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Nginx configuration test
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - nginx.conf
7
+
8
+ jobs :
9
+ nginx-test-job :
10
+ runs-on : ubuntu-latest
11
+ container :
12
+ image : docker.io/library/nginx:1.28.0-alpine-slim
13
+ steps :
14
+ - name : Checkout repository
15
+ uses : actions/checkout@v5
16
+ - name : Test Nginx configuration
17
+ run : |
18
+ cat > default.conf <<EOF
19
+ http {
20
+ include 'nginx.conf';
21
+ }
22
+ events {}
23
+ EOF
24
+ nginx -t -c $(pwd)/default.conf
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ server {
422
422
rewrite ^/academy/get-most-of-actors$ /academy/actor-marketing-playbook permanent;
423
423
424
424
# Misc
425
- ; rewrite ^/platform/integrations/llama$ /platform/integrations/llama-index permanent;
425
+ rewrite ^/platform/integrations/llama$ /platform/integrations/llama-index permanent;
426
426
427
427
}
428
428
You can’t perform that action at this time.
0 commit comments