You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
472 B
Plaintext

server {
4 months ago
listen 80;
server_name localhost;
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
4 months ago
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
location / {
4 months ago
root /home/xydl/jkpg/static;
index index.html;
}
location /jkpg-api/ {
4 months ago
proxy_pass http://127.0.0.1:8080/;
}
4 months ago
location /filestore {
alias /home/xydl/jkpg/filestore;
autoindex on;
}
4 months ago
}