# 静态页面 Web 服务(Python http.server 后台常驻) # 安装位置: /etc/systemd/system/daily-market-web.service [Unit] Description=Daily Market Static Web Server After=network.target [Service] Type=simple User=DEPLOY_USER WorkingDirectory=APP_DIR ExecStart=DEPLOY_VENV/bin/python -m http.server 8775 --bind 127.0.0.1 Restart=on-failure RestartSec=5 [Install] WantedBy=multi-user.target