Skip to content

Instantly share code, notes, and snippets.

View muhaimincs's full-sized avatar
🌾
2024 Tahun Harapan Tahun Keluaran

Muhaimin CS muhaimincs

🌾
2024 Tahun Harapan Tahun Keluaran
  • MCS Dev Resources
  • Kuala Lumpur
  • 22:23 (UTC +08:00)
View GitHub Profile
@muhaimincs
muhaimincs / mongo-docker.bash
Created September 6, 2018 02:51 — forked from davideicardi/mongo-docker.bash
Running mongodb inside a docker container (with mongodb authentication)
# Create a container from the mongo image,
# run is as a daemon (-d), expose the port 27017 (-p),
# set it to auto start (--restart)
# and with mongo authentication (--auth)
# Image used is https://hub.docker.com/_/mongo/
docker pull mongo
docker run --name YOURCONTAINERNAME --restart=always -d -p 27017:27017 mongo mongod --auth
# Using the mongo "localhost exception" (https://docs.mongodb.org/v3.0/core/security-users/#localhost-exception)
# add a root user
@muhaimincs
muhaimincs / web.config
Last active October 29, 2023 06:57
Config for URL Rewrite in IIS
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://localhost:3000/{R:1}" />
</rule>
</rules>