mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-02-13 05:24:41 +08:00
29 lines
682 B
Nginx Configuration File
29 lines
682 B
Nginx Configuration File
#user root;
|
|
worker_processes 1;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
client_max_body_size 200m;
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html last;
|
|
index index.html index.htm;
|
|
}
|
|
#跨域配置
|
|
location /api/{
|
|
proxy_pass http://film:3601/;
|
|
}
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root html;
|
|
}
|
|
}
|
|
} |