Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const config = {
banner: 'unreleased',
},
'3.7.1': {
label: '3.7.1',
label: '3.7.x',
path: '',
banner: 'none',
},
Expand All @@ -56,6 +56,10 @@ const config = {
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
googleAnalytics: {
trackingID: 'UA-57013276-1',
anonymizeIP: true, // Should IPs be anonymized?
},
}),
],
],
Expand Down Expand Up @@ -137,10 +141,6 @@ const config = {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
googleAnalytics: {
trackingID: 'UA-57013276-1',
anonymizeIP: true, // Should IPs be anonymized?
},
}),
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ http {
ssl_prefer_server_ciphers on;

# websocket location (JATOS' group and batch channel and the test page)
location ~ "/(jatos/testWebSocket|publix/[\d]+/(group/join|batch/open))" {
location ~ "/(jatos/testWebSocket|publix/[a-z0-9-]+/(group/join|batch/open))" {
proxy_pass http://jatos-backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
Expand Down Expand Up @@ -172,7 +172,7 @@ http {
server_name www.example.com;

# websocket location (JATOS' group and batch channel and the test page)
location ~ "^/(jatos/testWebSocket|publix/[\d]+/(group/join|batch/open))" {
location ~ "^/(jatos/testWebSocket|publix/[a-z0-9-]+/(group/join|batch/open))" {
proxy_pass http://jatos-backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
Expand Down