Infrastructure– category –
-
Fixing the Issue of Ubuntu on WSL Failing to Boot After Reinstallation
After reinstalling Ubuntu on WSL, you might encounter an issue where Ubuntu fails to boot. You'll see the following error in the console: Failed to attach disk 'C:\Users\ahaya\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu_79rhk... -
Create Docker + Nginx + PHP environment
Seeking to display static and dynamic content on an Nginx container, I integrated PHP into a Docker+Nginx environment. Here's an overview of the process. 【Build a Docker + Nginx environment】 First, we will create a Docker+Nginx environ... -
How to limit bandwidth with Nginx
There may be occasions when you need to limit the network speed when connecting via HTTP from an application you are developing. For example, when connecting from a very slow network or a foreign country with poor infrastructure, you wan... -
3 Steps to Basic Authentication with Docker+Nginx
While developing an app supporting Basic Authentication for HTTP connections, I required a test environment with a web server utilizing HTTP Basic Authentication. I created a restricted page using Docker-containerized Nginx. Follow the t... -
Nginx POST settings
By default, accessing Nginx via POST results in an HTTP STATUS 405 error. This presents a problem when accessing an Nginx instance containerized in Docker from an app under development, especially when the app returns a fixed XML for deb... -
Check privacy settings when using Docker on macOS
Docker includes a feature that allows you to mount a folder from the host machine and use it as a shared folder. Versions of macOS Catalina 10.15 and later may encounter problems accessing a folder mounted using this feature. Ultimately,... -
Containerize and run Nginx with Docker
When developing native apps, like iOS and Android, and implementing a process that interacts with a web server via HTTP/HTTPS, you often need fixed data to be returned. For example, when unit testing communication processes in XCTest. Nu... -
Setup Homebrew on Windows
Homebrew, originally a package manager for macOS, now officially supports Linux from version 2.0 and is also officially compatible with WSL(Window Subsystem for Linux). This article describes how to set up Homebrew on WSL. 【Updates of t... -
Setup WSL (Windows Subsystem for Linux)
Homebrew v2.0, released on February 2, 2019, added support for Windows 10(WSL) and Linux. This article explains how to set up WSL, which Homebrew needs. 【Install WSL on Windows 10】 Follow these steps to install. STEPSelect "Settings" f... -
[RESOLVED] Unknown Authentication Error in Docker Compose
I have previously encountered an unexplained authentication error in Docker Compose, which I was able to resolve, so I am writing about it. 【Condition】 I containerized the server with which the unit test communicates using Docker. I re...
12