-
Updated
Jun 15, 2021 - Python
HTTP
HTTP (Hypertext Transfer Protocol) is a request and response protocol used to send a request to a server and receive a response back in the form of a file. HTTP is the basis of data communication for the web. HTTPS is an evolution in HTTP, where the “S” stands for secure socket layer allowing communication in HTTP to be more secure.
Here are 8,780 public repositories matching this topic...
-
Updated
Jun 18, 2021 - C
-
Updated
May 29, 2021 - Go
-
Updated
May 22, 2021 - Go
-
Updated
Jun 14, 2021 - Python
-
Updated
Jun 10, 2021 - JavaScript
背景和动机
我们不希望将一些敏感的内容提交到 git 仓库中,所以这些敏感内容我们会和提交到 git 仓库的配置文件分离。
我们将这些机密内容放在 dotenv运行时加载到环境变量
或是 直接存于环境变量
中。
除此之外,配置可能因为程序运行环境发生改变,而需要动态的进行配置。
所以我们希望 kratos 能够在配置文件中动态的识别环境变量占位符,并使用环境变量值替换配置的内容。
提议的方案
提案在配置文件中,通过占位符来替换环境变量中的功能:
提案建议的占位符风格有如下几种:
%(VARIABLE_NAME)
:传统的环境变量占位符%env(VARIABLE_NAME)%
: 带有环境变量处理器的占位符
传统的环境变量占位符
传统的占位符替换机制只能够替换环境变量(包含 dot
-
Updated
Jun 9, 2021 - C++
-
Updated
Jun 7, 2021 - Shell
If you're using proxies with requests-html
and rendering JS
sites is all good. Once you render a website pyppeteer don't know about this proxies and will expose your IP. This is an undesired behavior when scraping with proxies.
The idea is that whenever someone passes in proxies to the session
object or any method call
, make pyppeteer also use these proxies. #265
Describe the bug
Originally, @asvetlov intended to delete any use of attrs
from aiohttp 4.0+ series via aio-libs/aiohttp#5284. He dropped it from the runtime deps too.
But there are some places that still rely on attrs
meaning that this will cause failures in runtime because of the missing dep. The tests currently succeed because attrs is listed as a test dep.
Add a changelog
As we attempt to pick up the release cadence, we are in need of an explicit changelog file which enumerates changes in each version. This should be a markdown or plaintext file adhering to some form of standardized format. Ideally, it will be able to work with #582.
Context
This isn't really a feature request, as what I need is possible with nock as-is. But I spent several hours searching, reading old issues and searching through the source code to find the solution, so I thought this might help others.
I am testing code that accesses a service that sets the statusMessage of the response, as well as the statusCode. I am using nock to mock the server
-
Updated
Jun 17, 2021 - Go
-
Updated
Jun 11, 2021 - TypeScript
-
Updated
Jun 17, 2021 - TypeScript
-
Updated
May 30, 2021 - Go
As pointed out by @Stargateur in falconry/falcon#1906 (comment), our JSONHandler
customization docs could be made clearer by separately illustrating different (albeit closely related) concepts:
- Use a custom JSON library (such as the exemplified
rapidjson
). Customize para
-
Updated
Jun 17, 2021 - C++
-
Updated
Jun 1, 2021 - Go
I'm managing a bunch of servers and they're running Caddy v2. The upgrade command works great for upgrading with the packages previously chosen. In the future, it's likely I'll want to add/remove packages from that list over time.
Would it make sense to add flags to add and remove packages from the caddy build on upgrade?