https://gist.github.com/the-sanjar/0f755693cd987fc85605119bc5b6679d
https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04
CREATE DATABASE test_guru; | |
CREATE TABLE categories ( | |
id serial PRIMARY KEY, | |
title varchar(50) | |
); | |
CREATE TABLE tests ( | |
id serial PRIMARY KEY, | |
title varchar(50), |
GET / HTTP/1.1 | |
Host: httpbin.org | |
HTTP/1.1 200 OK | |
Access-Control-Allow-Credentials: true | |
Access-Control-Allow-Origin: * | |
Content-Type: text/html; charset=utf-8 | |
Date: Tue, 23 Jul 2019 16:34:01 GMT | |
Referrer-Policy: no-referrer-when-downgrade | |
Server: nginx |