
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Purpose made HTTP Docker file setup for hosting exploits for the web browser for Sony PlayStation devices and the Nintendo Wii/WiiU/Switch. This essentially has to be used with the https://github.com/Al-Azif/exploit-host-DNS component. It's possible to use it "standalone", but will require something to make the browser send the correct Host header with it's HTTP(S) requests.
When used in conjunction with https://github.com/Al-Azif/exploit-host-DNS following features are available:
This is setup to work right out of the box with https://github.com/Al-Azif/exploit-host-DNS. There are a lot of options for your individual hosting wants/needs; however, I'll only show the basic usage here.
This command will always pull the latest image from Docker Hub, run on the main Docker bridge network, and it will restart if it's not running until you explicitly tell it to stop.
docker run -d --network bridge -p 80:80/tcp -p 443:443/tcp --restart unless-stopped --pull always alazif/exploit-host-http:latest
This composer file will do the same as the command above.
yml--- version: "3.8" services: exploit-host-http: image: alazif/exploit-host-http:latest network_mode: bridge ports: - 80:80/tcp - 443:443/udp pull_policy: always restart: unless-stopped
Start the compose file by calling docker compose up -d from the same location as the composer file.
| Option | Default | Type | Info |
|---|---|---|---|
| DEBUG | false | boolean | Show debug output for entrypoint.sh in the Docker log. |
| REDIRECT_TYPE | http | string | The protocol that is used for the hijacked landing page redirect. Valid values are http and https. |
| ROOT_DOMAIN | the.gate | string | The root domain that is used for hijacked landing page redirect. This is ONLY the domain itself. |
| ROOT_DOMAIN_PATH | none | string | Additional path to append to root domain for redirect. If needed you can add an alternative port here as well. |
| HIJACK_URL | none | string | Rather than hosting the hijacked landing page just redirect the request to another domain hosted elsewhere. If this is set, ROOT_DOMAIN and ROOT_DOMAIN_PATH are ignored. |
| NGINX_ACCESS_LOG | false | boolean | Enables the NGINX access log, located at /var/log/nginx/access.log |
| NGINX_ERROR_LOG | false | boolean | Enables the NGINX error log, located at /var/log/nginx/error.log |
| NGINX_ERROR_LOG_LEVEL | warn | string | The error log level for the NGINX error log. Valid values are debug, info, notice, warn, error, crit, alert, emerg. Ignored if NGINX_ERROR_LOG is false. |
| TLS | self | string | Valid values are self, letsencrypt, and mount. |
| CF_IP_CORRECTION | false | boolean | Automatically correct CloudFlare IP addresses to the real IP address for logging. |
| CF_STRICT | false | boolean | |
| OCSP_STAPLING | false | boolean | |
| SEVER_HASH_BUCKET_SIZE_OVERRIDE | false | boolean | Overrides the server_names_hash_bucket_size option in NGINX to be 64. Some systems have 32 as the default and that is not enough for our usage. |
TLS options work as expected, I believe certbot for letsencrypt has changed.CF_STRICT still works as expected and hasn't changed.您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务