Skip to content

Instantly share code, notes, and snippets.

View fabioselau077's full-sized avatar
🏠
Working from home

Fabio fabioselau077

🏠
Working from home
  • Brazil
View GitHub Profile
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter/material.dart';
class Clientes extends StatefulWidget {
@override
_ClientesState createState() => _ClientesState();
}
class _ClientesState extends State<Clientes> {
@arikfr
arikfr / README.md
Last active September 10, 2025 05:01
Setting up HTTPS with LetsEncrypt for Redash Docker Deployment
  1. Make sure the domain you picked points at the IP of your Redash server.
  2. Switch to the root user (sudo su).
  3. Create a folder named nginx in /opt/redash.
  4. Create in the nginx folder two additional folders: certs and certs-data.
  5. Create the file /opt/redash/nginx/nginx.conf and place the following in it: (replace example.redashapp.com with your domain name)
    upstream redash {
        server redash:5000;
    }