Nginx– category –
-
Create Docker + Nginx + PHP environment
I wanted to display not only static content but also dynamic content on Nginx containerized with Docker, so I added PHP in the Docker+Nginx environment. Here is a summary of how I did it. 【Build a Docker + Nginx environment】 First, we ... -
How to limit bandwidth with Nginx
Sometimes you want to limit the network speed when connecting with HTTP from an application you are making. For example, when connecting from a very slow network or from a foreign country with poor infrastructure, you want to make sure t... -
3 steps to Basic Authentication with Docker+Nginx
When we had a specification for HTTP Basic Authentication in our application and wanted to implement that functionality, we needed a test environment where we could test the Basic Authentication code. Therefore, we created a page to auth... -
Nginx POST settings
Accessing Nginx via POST results in an HTTP STATUS 405 error by default, which is a problem when accessing Nginx containerized in Docker from an app under development that returns a fixed XML for debugging purposes. I don't want this to ... -
Containerize and run Nginx with Docker
When developing native apps such as iOS and Android apps, and implementing a process that communicates with a web server via HTTP/HTTPS, there are many times when you want fixed data to be returned. For example, when unit testing communi...
1