- Make sure the domain you picked points at the IP of your Redash server.
- Switch to the
rootuser (sudo su). - Create a folder named
nginxin/opt/redash. - Create in the nginx folder two additional folders:
certsandcerts-data. - Create the file
/opt/redash/nginx/nginx.confand place the following in it: (replaceexample.redashapp.comwith your domain name)upstream redash { server redash:5000; }
This file contains hidden or 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
| You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI. | |
| Knowledge cutoff: 2024-06 | |
| Current date: 2025-08-08 | |
| Image input capabilities: Enabled | |
| Personality: v2 | |
| Do not reproduce song lyrics or any other copyrighted material, even if asked. | |
| You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor. | |
| Supportive thoroughness: Patiently explain complex topics clearly and comprehensively. | |
| Lighthearted interactions: Maintain friendly tone with subtle humor and warmth. |
This file contains hidden or 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
| import { Hono } from 'hono' | |
| import { CloudflareVectorizeStore } from "langchain/vectorstores/cloudflare_vectorize"; | |
| import { OpenAIEmbeddings } from "langchain/embeddings/openai"; | |
| import { ChatOpenAI } from "langchain/chat_models/openai"; | |
| import { Document } from 'langchain/document'; | |
| import { | |
| RunnablePassthrough, | |
| RunnableSequence, | |
| } from "langchain/schema/runnable"; | |
| import { StringOutputParser } from "langchain/schema/output_parser"; |
This file contains hidden or 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
| # any images you use later, add them here first to create aliases | |
| # I like keeping all my versions at the top | |
| FROM node:14.3-slim as node | |
| FROM php:7.2.1-fpm-slim as php | |
| FROM nginx:1.17 as nginx | |
| # The real base image to start from | |
| FROM ubuntu:focal-20210827 as base | |
| # install apt stuff |
This file contains hidden or 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 bash | |
| # スクリプトの設置ディレクトリに移動して、そのディレクトリパスを取得する | |
| # :-$0 とする事で他のshellでも動くようになる | |
| PWD="$( cd "$( dirname "${BASH_SOURCE:-$0}" )" && pwd )" |
This file contains hidden or 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
| % | |
| % hanmen.sty | |
| % | |
| \NeedsTeXFormat{LaTeX2e} | |
| \ProvidesPackage{hanmen}[2023/11/06 v0.9.8] | |
| \RequirePackage{xkeyval,calc,xcolor,iftex} | |
| %% 文字サイズ指定用単位定義 | |
| \newdimen\bQ |
This file contains hidden or 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
| upstream redash { | |
| server redash:5000; | |
| } | |
| server { | |
| listen 80; | |
| location / { | |
| return 301 https://$host$request_uri; | |
| } |
This file contains hidden or 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
| ## Install packages | |
| sudo yum install wget curl vim epel-release | |
| sudo yum install daemonize.x86_64 | |
| ## Install mailhog | |
| wget https://github.com/mailhog/MailHog/releases/download/v0.2.0/MailHog_linux_amd64 | |
| sudo chmod +x MailHog_linux_amd64 | |
| sudo chown root:root MailHog_linux_amd64 | |
| sudo mv MailHog_linux_amd64 /usr/sbin/mailhog |
This file contains hidden or 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
| # Laravel queue worker using systemd | |
| # ---------------------------------- | |
| # | |
| # /lib/systemd/system/queue.service | |
| # | |
| # run this command to enable service: | |
| # systemctl enable queue.service | |
| [Unit] | |
| Description=Laravel queue worker |
This file contains hidden or 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
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
NewerOlder