Skip to content

Instantly share code, notes, and snippets.

View kplaube's full-sized avatar
🚀

Klaus Laube kplaube

🚀
View GitHub Profile
@kplaube
kplaube / http_mod_wsgi.conf
Created September 16, 2012 23:43
Casos de uso do CGI
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
ServerAdmin webmaster@example.com
DocumentRoot /usr/local/www/documents
Alias /robots.txt /usr/local/www/documents/robots.txt
Alias /favicon.ico /usr/local/www/documents/favicon.ico
@kplaube
kplaube / api.yaml
Last active February 18, 2020 11:27
openapi: "3.0.1"
info:
title: Movies API
version: v1
paths:
/movies:
summary: A set of movies
get:
summary: Get a list of movies
@kplaube
kplaube / openapi.yaml
Last active March 1, 2020 20:52
Feedly-clone API Spec
openapi: "3.0.2"
info:
title: Feedly-clone
version: v1
paths:
/channels:
summary: Set of channels, e.g. blogs, websites or podcasts
get:
responses:
"200":
FORMAT: A1
# Movies API
This is an API Blueprint example describing a movies API.
# Group Movies
Resources related to movies in the API.