# create python virtual environment
python -m venv ghost
source ./ghost/bin/activate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USERID=$(id -u) | |
if [ "${USERID}" = "0" ] && [ -n "${NGINX_UID}" ] && [ "${NGINX_UID}" != "0" ]; then | |
usermod -u "${NGINX_UID}" nginx | |
if [ -n "${NGINX_GID}" ] && [ "${NGINX_GID}" != "0" ]; then | |
groupmod -g "${NGINX_GID}" nginx | |
fi | |
# Ensure the nginx user is able to write to container logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import json | |
import sys | |
import urllib.request | |
from urllib.error import URLError | |
import textwrap | |
def fetch_targets(prometheus_url): | |
try: | |
with urllib.request.urlopen(f"{prometheus_url}/api/v1/targets") as response: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ForwardedHeadersMiddleware : OwinMiddleware | |
{ | |
public ForwardedHeadersMiddleware(OwinMiddleware next) : base(next) | |
{ | |
} | |
public override Task Invoke(IOwinContext context) | |
{ | |
if (string.Equals(context.Request.Headers["X-Forwarded-Proto"], "https", | |
StringComparison.OrdinalIgnoreCase)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/colinmollenhour/docker-openmage/blob/main/8.2/apache/Dockerfile | |
# https://github.com/OpenMage/magento-lts/tree/main/dev/openmage | |
ARG PHP_VERSION=8.2 | |
ARG OPENMAGE_VERSION=20.3.0 | |
FROM alpine as unzipper | |
ARG OPENMAGE_VERSION | |
RUN set -eux; \ | |
apk add curl unzip; \ | |
mkdir -p /usr/src/openmage; \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Reflection; | |
namespace System.Text.Json.Serialization; | |
/// https://learn.microsoft.com/dotnet/standard/serialization/system-text-json/converters-how-to | |
public class ListOfEnumStringConverter : JsonConverterFactory | |
{ | |
public override bool CanConvert(Type typeToConvert) | |
{ | |
if (!typeToConvert.IsGenericType) |
Run this script from GitHub Gist directly
npx https://gist.github.com/akunzai/e245cb079d90bf102b8a7bf60ef07536
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
# encoding: utf-8 | |
""" | |
This is a small python script to clear up old gitlab build artifacts. | |
""" | |
import argparse | |
import datetime | |
import functools | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Origin: https://github.com/inderpreet99/protoaculous-bundler | |
# Requirements: curl,unzip,perl,npx | |
PROTOTYPE_VER="1.7.3.0" | |
SCRIPTACULOUS_VER="1.9.0" | |
[ -f "prototype.$PROTOTYPE_VER.js" ] || curl -so prototype.$PROTOTYPE_VER.js https://ajax.googleapis.com/ajax/libs/prototype/$PROTOTYPE_VER/prototype.js | |
[ -f "scriptaculous-js-$SCRIPTACULOUS_VER.zip" ] || curl -sO http://script.aculo.us/dist/scriptaculous-js-$SCRIPTACULOUS_VER.zip | |
unzip -q -o scriptaculous-js-$SCRIPTACULOUS_VER.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- The following configuration should also work with Azure App Service --> | |
<configuration> | |
<system.web> | |
<!-- Disable X-AspNet-Version Header --> | |
<httpRuntime enableVersionHeader="false" /> | |
<!-- File upload size limit (KB), avoid DoS attack --> | |
<httpRuntime maxRequestLength="4096" /> | |
<!-- Disable debug & trace in Production --> | |
<compilation debug="false" /> | |
<trace enabled="false" /> |
NewerOlder