Distribute and handle challenge.json
This commit is contained in:
parent
e8f6a03cd9
commit
dff4f4eb63
20 changed files with 167 additions and 48 deletions
|
|
@ -165,6 +165,12 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /challenge.json {
|
||||
root /srv/SETTINGSDIST/;
|
||||
expires epoch;
|
||||
add_header X-FIC-time $msec;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /settings.json {
|
||||
root /srv/SETTINGSDIST/;
|
||||
expires epoch;
|
||||
|
|
|
|||
|
|
@ -146,6 +146,12 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /challenge.json {
|
||||
root ${PATH_SETTINGS}/;
|
||||
expires epoch;
|
||||
add_header X-FIC-time $msec;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /settings.json {
|
||||
root ${PATH_SETTINGS}/;
|
||||
expires epoch;
|
||||
|
|
|
|||
|
|
@ -155,6 +155,12 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /challenge.json {
|
||||
root /srv/SETTINGSDIST/;
|
||||
expires epoch;
|
||||
add_header X-FIC-time $msec;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /settings.json {
|
||||
root /srv/SETTINGSDIST/;
|
||||
expires epoch;
|
||||
|
|
|
|||
Reference in a new issue