gnaaromat

Results 7 comments of gnaaromat

Plus there was a lawsuit in Germany that makes it potentially illegal to load fonts from google servers. Which in turn makes it illegal to use recaptcha now?!

FYI: Also doesnt work with a postgres installation (I am not using the backend - already had strapi installed) Here is the output from the import: strapi import -f ../nextjs-corporate-starter/seed-data.tar.gz...

Just spin up a little nginx and proxy the request through?! server { listen 80 default_server; server_name _; location / { proxy_pass http://localhost:2024; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header...

I just uninstalled Cursor because of this lol. You can do pretty much anything but fuck up my command line and you're done. As for the linked issue: Calling this...

Is your company firewall blocking the wheel. Are you able to manually download it via `wget https://files.pythonhosted.org/packages/e5/35/f8b19922b6a25bc0880171a2f1a003eaeb93657475193ab516fd87cac9da/pytest_asyncio-1.3.0-py3-none-any.whl` ?

Then your Docker's network/DNS is broken/misconfigured What do these do in your container? cat /etc/resolv.conf ping -c 4 8.8.8.8 ping -c 4 files.pythonhosted.org If you can ping the Google server...

> > 我通过设置文件解决了DNS问题: > > > > 1. /etc/system/system/docker.service.d/proxy.conf(添加代理信息) > > 2. docker-compose.yml(添加环境代理信息) > > > > 重启 Docker 后,问题解决了。谢谢。 > > 请问能给出你的proxy.conf和docker-compose.yml 环境的代理信息吗?使用docker部署,遇到同样的问题 > (auto translate) Could you share...