support docker

This commit is contained in:
RainSun 2020-04-04 08:44:11 +08:00
parent c305f052d5
commit 62ba1ff8db
3 changed files with 24 additions and 4 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nginx
COPY dist/ /usr/share/nginx/html/
COPY nginx/default.conf /etc/nginx/conf.d/default.conf

17
nginx/default.conf Normal file
View File

@ -0,0 +1,17 @@
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/host.access.log main;
error_log /var/log/nginx/error.log error;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

View File

@ -1,13 +1,13 @@
import axios from 'axios'
export const api = axios.create({
// baseURL: 'https://ccb.canary.moe/api/',
baseURL: window.location.origin + '/api/',
baseURL: 'https://ccb.canary.moe/api/',
// baseURL: 'https://api.lacus.site/ccb/',
// baseURL: 'http://152.136.99.231:8001' + '/api/',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/json'
// 'Access-Control-Allow-Origin': '*'
'Accept': 'application/json',
'Access-Control-Allow-Origin': '*'
},
timeout: 10 * 1000
})