# tags **Repository Path**: bitfaner/tags ## Basic Information - **Project Name**: tags - **Description**: 标签系统 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-08 - **Last Updated**: 2026-04-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # TAGS > React + Golang ## Nginx ```nginx server { listen 80; server_name tags.pythonup.cn; root /data/tags/fe/dist; index index.html; location /{ try_files $uri $uri/ /index.html; } location ~ ^/api { proxy_pass http://127.0.0.1:9551; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } ```