Skip to content

Instantly share code, notes, and snippets.

@a20eac1d
Last active October 17, 2019 12:34
Show Gist options
  • Save a20eac1d/925d72a3ad6f0d1f8d9d5bd1240d6156 to your computer and use it in GitHub Desktop.
Save a20eac1d/925d72a3ad6f0d1f8d9d5bd1240d6156 to your computer and use it in GitHub Desktop.
[Macaron] 2019-10-17 12:27:59: Started GET /user/logout for 172.19.0.1
[Macaron] 2019-10-17 12:27:59: Completed GET /user/logout 302 Found in 46.58193ms
[Macaron] 2019-10-17 12:27:59: Started GET / for 172.19.0.1
[Macaron] 2019-10-17 12:28:00: Completed GET / 200 OK in 51.252957ms
[Macaron] 2019-10-17 12:28:00: Started GET /user/avatar/Username/-1 for 172.19.0.1
[Macaron] 2019-10-17 12:28:00: Completed GET /user/avatar/Username/-1 302 Found in 46.81676ms
[Macaron] 2019-10-17 12:28:00: Started GET /api/v1/users/Username/heatmap for 172.19.0.1
[Macaron] 2019-10-17 12:28:00: Completed GET /api/v1/users/Username/heatmap 200 OK in 46.572611ms
[Macaron] 2019-10-17 12:28:00: Started GET /api/v1/repos/search?sort=updated&order=desc&uid=1&q=&limit=15&mode= for 172.19.0.1
[Macaron] 2019-10-17 12:28:00: Completed GET /api/v1/repos/search?sort=updated&order=desc&uid=1&q=&limit=15&mode= 200 OK in 46.643438ms
version: "2"
services:
gitea:
image: gitea/gitea:latest
container_name: gitea
environment:
- PUID=1001
- PGID=1001
- DISABLE_SSH=true
volumes:
- /home/gitea/data:/data
ports:
- "3100:3000"
- "3101:22"
restart: unless-stopped
server
{
listen 80;
listen [::]:80;
server_name code.mydomain.com;
client_max_body_size 256M;
location /
{
proxy_pass http://127.0.0.1:3100;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment