-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update nginx configs and fix gh action multi line output. (#615)
* Update nginx configs and fix gh action multi line output. * Update multi line GH output.
- Loading branch information
1 parent
ca995f9
commit 84d28ab
Showing
4 changed files
with
92 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Config file to pass requests to specific scripts in the fpm container. | ||
# Used for *some* auth requests where we don't want to load WordPress. | ||
|
||
# Prepare and pass the request to fpm. | ||
fastcgi_param SCRIPT_FILENAME $document_root$script_name; | ||
include fastcgi_params; | ||
# override SCRIPT_NAME which was set in fastcgi_params | ||
fastcgi_param SCRIPT_NAME $script_name; | ||
fastcgi_pass fpm; | ||
|
||
# This is needed to be set explicitly, as this endpoint is hit as a subrequest. | ||
fastcgi_no_cache 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters