Skip to content

Instantly share code, notes, and snippets.

View 10thfloor's full-sized avatar
💫

Mackenzie 10thfloor

💫
View GitHub Profile
@dweldon
dweldon / meteor-nginx
Last active January 22, 2024 06:53
This is an example of how to configure nginx to serve a meteor app.
server {
listen [::]:80;
listen 80;
server_name app.example.com;
return 301 https://$server_name$request_uri;
}
server {