For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
NORMAL | |
.travelersinsurance | |
.northwesternmutual | |
PUNYCODE | |
.xn--clchc0ea0b2g2a9gcd | |
.xn--vermgensberater-ctb | |
.xn--vermgensberatung-pwb |
sudo ln -s /usr/lib/dart/bin/pub /usr/bin/pub |
import 'package:flutter/gestures.dart'; | |
import 'package:flutter/material.dart'; | |
//Main function. The entry point for your Flutter app. | |
void main() { | |
runApp( | |
MaterialApp( | |
home: Scaffold( | |
body: DemoApp(), | |
), |
import 'package:flutter/material.dart'; | |
import 'package:flutter_svg/flutter_svg.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
#!/bin/sh | |
# Reset Parallels Desktop's trial and generate a casual email address to register a new user | |
rm /private/var/root/Library/Preferences/com.parallels.desktop.plist /Library/Preferences/Parallels/licenses.xml | |
jot -w pdu%d@gmail.com -r 1 |
This is a walkthrough of how to configure Laravel Reverb for production using services like Laravel Forge or Ploi. The first step is nginx configuration changes, then .env changes and finally spinning up your Reverb server.
Ensure your nginx site configuration has the following inside the server block:
location /app {