nginx-local-file-storage-80.conf 251 字节
Newer Older
1 2 3
server {
    listen 80;
    server_name 改成自己的域名;
智布道's avatar
智布道 已提交
4 5
    root 改成自己的文件目录;

6 7
	location ^~ / {
		try_files $uri $uri/ /index.html;
智布道's avatar
智布道 已提交
8
 	    proxy_set_header Cookie $http_cookie;
9 10 11
		proxy_set_header Host $host:$server_port;
    }
}