# extract **Repository Path**: sdegr/extract ## Basic Information - **Project Name**: extract - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-17 - **Last Updated**: 2023-11-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## nginx配置 server { listen 8079; server_name localhost; location / { root E:/ideaProject/RuoYi-Vue-fast/ruoyi-ui/dist; index index.html; try_files $uri $uri/ /index.html; } location /profile/ { alias D:/ruoyi/uploadPath/; autoindex on; } location /prod-api/ { proxy_pass http://127.0.0.1:8080/; } }