Move api and static urls to subdomains

master
Tanner Collin 4 years ago
parent 5f486695ba
commit fada97dab0
  1. 1
      apiserver/apiserver/settings.py
  2. 16
      webclient/src/utils.js

@ -34,6 +34,7 @@ ALLOWED_HOSTS = []
if DEBUG:
ALLOWED_HOSTS += [
'spaceport-api.dns.t0.vc',
'api.spaceport.dns.t0.vc',
]

@ -1,16 +1,6 @@
var siteUrl, apiUrl, staticUrl;
if (process.env.NODE_ENV !== 'production') {
siteUrl = 'http://spaceport.dns.t0.vc';
apiUrl = 'http://spaceport-api.dns.t0.vc';
staticUrl = 'http://spaceport-static.dns.t0.vc';
} else {
siteUrl = 'https://' + window.location.hostname;
apiUrl = 'https://api.' + window.location.hostname;
staticUrl = 'https://static.' + window.location.hostname;
}
export { siteUrl, apiUrl, staticUrl };
export const siteUrl = window.location.protocol + '//' + window.location.hostname;
export const apiUrl = window.location.protocol + '//api.' + window.location.hostname;
export const staticUrl = window.location.protocol + '//static.' + window.location.hostname;
export const requester = (route, method, token, data) => {
let options = {headers: {}};

Loading…
Cancel
Save