TandoorRecipes / recipes

Application for managing recipes, planning meals, building shopping lists and much much more!
https://docs.tandoor.dev
Other
5.35k stars 563 forks source link

Possible permissions issue. Can't create anything #1057

Closed ghost closed 2 years ago

ghost commented 2 years ago

Version

Please provide your current version (can be found on the system page since v0.8.4) Version: Current Version: 1.0.0 Ref: afe46b3f6714747c23ff0595714671cacbbebaf8

Bug description

A clear and concise description of what the bug is.

Not sure if it's a bug or a set up issue. Not sure what info to include. I'm a newbie at docker. A lot of the .env file didn't make a lot of sense to me. I can't create keywords or cook books etc. The error is always "Failure There was an error creating a resource!"

My docker-compose is:

`version: "3"
services:
  db_recipes:
    restart: always
    image: postgres:11-alpine
    volumes:
      - ./postgresql:/var/lib/postgresql/data
    env_file:
      - ./.env

  web_recipes:
    image: vabene1111/recipes
    restart: always
    env_file:
      - ./.env
    volumes:
      - staticfiles:/opt/recipes/staticfiles
      - nginx_config:/opt/recipes/nginx/conf.d
      - ./mediafiles:/opt/recipes/mediafiles
    depends_on:
      - db_recipes

  nginx_recipes:
    image: nginx:mainline-alpine
    restart: always
    ports:
      - 8088:80
    env_file:
      - ./.env
    depends_on:
      - web_recipes
    volumes:
      - nginx_config:/etc/nginx/conf.d:ro
      - staticfiles:/static
      - ./mediafiles:/media

volumes:
  nginx_config:
  staticfiles:`

My .env is

`# only set this to true when testing/debugging
# when unset: 1 (true) - dont unset this, just for development
DEBUG=0
SQL_DEBUG=0

# hosts the application can run under e.g. recipes.mydomain.com,cooking.mydomain.com,...
ALLOWED_HOSTS=*

# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
SECRET_KEY=***********************************************************

# your default timezone See https://timezonedb.com/time-zones for a list of timezones
TIMEZONE=Australia/Sydney

# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
DB_ENGINE=django.db.backends.postgresql
# DB_OPTIONS= {} # e.g. {"sslmode":"require"} to enable ssl
POSTGRES_HOST=db_recipes
POSTGRES_PORT=5432
POSTGRES_USER=jon
POSTGRES_PASSWORD=*****************************
POSTGRES_DB=djangodb

# database connection string, when used overrides other database settings.
# format might vary depending on backend
# DATABASE_URL = engine://username:password@host:port/dbname

# the default value for the user preference 'fractions' (enable/disable fraction support)
# default: disabled=0
FRACTION_PREF_DEFAULT=0

# the default value for the user preference 'comments' (enable/disable commenting system)
# default comments enabled=1
COMMENT_PREF_DEFAULT=1

# Users can set a amount of time after which the shopping list is refreshed when they are in viewing mode
# This is the minimum interval users can set. Setting this to low will allow users to refresh very frequently which
# might cause high load on the server. (Technically they can obviously refresh as often as they want with their own scripts)
SHOPPING_MIN_AUTOSYNC_INTERVAL=5

# Default for user setting sticky navbar
# STICKY_NAV_PREF_DEFAULT=1

# If base URL is something other than just /  (you are serving a subfolder in your proxy for instance http://recipe_app/recipes/)
# SCRIPT_NAME=/recipes

# If staticfiles are stored at a different location uncomment and change accordingly, MUST END IN /
# this is not required if you are just using a subfolder
# This can either be a relative path from the applications base path or the url of an external host
# STATIC_URL=/static/

# If mediafiles are stored at a different location uncomment and change accordingly, MUST END IN /
# this is not required if you are just using a subfolder
# This can either be a relative path from the applications base path or the url of an external host
# MEDIA_URL=/media/

# Serve mediafiles directly using gunicorn. Basically everyone recommends not doing this. Please use any of the examples
# provided that include an additional nxginx container to handle media file serving.
# If you know what you are doing turn this back on (1) to serve media files using djangos serve() method.
# when unset: 1 (true) - this is temporary until an appropriate amount of time has passed for everyone to migrate
GUNICORN_MEDIA=0

# S3 Media settings: store mediafiles in s3 or any compatible storage backend (e.g. minio)
# as long as S3_ACCESS_KEY is not set S3 features are disabled
# S3_ACCESS_KEY=
# S3_SECRET_ACCESS_KEY=
# S3_BUCKET_NAME=
# S3_REGION_NAME= # default none, set your region might be required
# S3_QUERYSTRING_AUTH=1 # default true, set to 0 to serve media from a public bucket without signed urls
# S3_QUERYSTRING_EXPIRE=3600 # number of seconds querystring are valid for
# S3_ENDPOINT_URL= # when using a custom endpoint like minio

# Email Settings, see https://docs.djangoproject.com/en/3.2/ref/settings/#email-host
# Required for email confirmation and password reset (automatically activates if host is set)
# EMAIL_HOST=
# EMAIL_PORT=
# EMAIL_HOST_USER=
# EMAIL_HOST_PASSWORD=
# EMAIL_USE_TLS=0
# EMAIL_USE_SSL=0
# DEFAULT_FROM_EMAIL= # email sender address (default 'webmaster@localhost')
# ACCOUNT_EMAIL_SUBJECT_PREFIX= # prefix used for account related emails (default "[Tandoor Recipes] ")

# allow authentication via reverse proxy (e.g. authelia), leave off if you dont know what you are doing
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
# when unset: 0 (false)
REVERSE_PROXY_AUTH=0

# Default settings for spaces, apply per space and can be changed in the admin view
# SPACE_DEFAULT_MAX_RECIPES=0 # 0=unlimited recipes
# SPACE_DEFAULT_MAX_USERS=0 # 0=unlimited users per space
# SPACE_DEFAULT_MAX_FILES=0 # Maximum file storage for space in MB. 0 for unlimited, -1 to disable file upload.
# SPACE_DEFAULT_ALLOW_SHARING=1 # Allow users to share recipes with public links

# allow people to create accounts on your application instance (without an invite link)
# when unset: 0 (false)
# ENABLE_SIGNUP=0

# If signup is enabled you might want to add a captcha to it to prevent spam
# HCAPTCHA_SITEKEY=
# HCAPTCHA_SECRET=

# if signup is enabled you might want to provide urls to data protection policies or terms and conditions
# TERMS_URL=
# PRIVACY_URL=
# IMPRINT_URL=

# enable serving of prometheus metrics under the /metrics path
# ATTENTION: view is not secured (as per the prometheus default way) so make sure to secure it
# trough your web server (or leave it open of you dont care if the stats are exposed)
# ENABLE_METRICS=0

# allows you to setup OAuth providers
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
# SOCIAL_PROVIDERS = allauth.socialaccount.providers.github, allauth.socialaccount.providers.nextcloud,

# Should a newly created user from a social provider get assigned to the default space and given permission by default ?
# ATTENTION: This feature might be deprecated in favor of a space join and public viewing system in the future
# default 0 (false), when 1 (true) users will be assigned space and group
# SOCIAL_DEFAULT_ACCESS = 1

# if SOCIAL_DEFAULT_ACCESS is used, which group should be added
# SOCIAL_DEFAULT_GROUP=guest

# Django session cookie settings. Can be changed to allow a single django application to authenticate several applications
# when running under the same database
# SESSION_COOKIE_DOMAIN=.example.com
# SESSION_COOKIE_NAME=sessionid # use this only to not interfere with non unified django applications under the same top level domain

# by default SORT_TREE_BY_NAME is disabled this will store all Keywords and Food in the order they are created
# enabling this setting makes saving new keywords and foods very slow, which doesn't matter in most usecases.
# however, when doing large imports of recipes that will create new objects, can increase total run time by 10-15x
# Keywords and Food can be manually sorted by name in Admin
# This value can also be temporarily changed in Admin, it will revert the next time the application is started
# This will be fixed/changed in the future by changing the implementation or finding a better workaround for sorting
# SORT_TREE_BY_NAME=0
# LDAP authentication
# default 0 (false), when 1 (true) list of allowed users will be fetched from LDAP server
#LDAP_AUTH=
#AUTH_LDAP_SERVER_URI=
#AUTH_LDAP_BIND_DN=
#AUTH_LDAP_BIND_PASSWORD=
#AUTH_LDAP_USER_SEARCH_BASE_DN=`

Let me know what else to check or report please.

Jon

MaxJa4 commented 2 years ago

Hi. Could you please put your ENV file and compose file info inside a code quotation for better readability? It's those " < > " in the top of the editor or Ctrl + E :) Thanks.

Regarding your issue: Is the owner of the folders "mediafiles" and "postgresql" the same as the user of docker? In case you don't know already:

You can also set DEBUG=1 and SQL_DEBUG=1 in the beginning of your ENV file and restart the container (I suppose that would be a good idea, IDK if it's necessary to restart). Then there should be more logs :) You can access them via docker logs recipes_db_recipes_1, docker logs recipes_web_recipes_1 and docker logs recipes_nginx_recipes_1. If you post these, use the code quotation please :)

vabene1111 commented 2 years ago

thanks @MaxJa4 , i updated to OP with code blocks. The permissions on the directories should not cause any issue but its good to check them.

Apart from that the logs Max requestd are exactly what is needed to debug this problem, best would be to start the container and make one failing request, then post the complete log.

Also no worries about your post, you did everything correctly and we are happy to help/guide you to a solution.

ghost commented 2 years ago

I could've sworn I used code blocks for my two files. Sorry if I didn't. jon@media-machine:~$ ps aux | grep dockerd root 2102 2.3 0.5 3082576 96092 ? Ssl Nov10 83:34 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock jon 1684498 0.0 0.0 9040 732 pts/1 S+ 21:47 0:00 grep --color=auto dockerd

jon@media-machine:~$ ls -al tandoor/ total 28 drwxr-xr-x 4 jon jon 4096 Nov 9 14:27 . drwxr-xr-x 21 jon jon 4096 Nov 12 12:53 .. -rw-r--r-- 1 jon jon 770 Nov 9 14:27 docker-compose.yml -rw-r--r-- 1 jon jon 7062 Nov 5 22:29 .env drwxr-xr-x 3 root root 4096 Nov 9 14:32 mediafiles drwx------ 19 70 root 4096 Nov 10 09:39 postgresql

vabene1111 commented 2 years ago

No worries, permissions look good from what i can see, i think the logs are the think we need now

ghost commented 2 years ago

ok; docker logs tandoor_db_recipes_1

PostgreSQL Database directory appears to contain a database; Skipping initialization

2021-11-09 04:38:14.833 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2021-11-09 04:38:14.833 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2021-11-09 04:38:14.849 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2021-11-09 04:38:14.879 UTC [21] LOG:  database system was shut down at 2021-11-09 04:36:06 UTC
2021-11-09 04:38:14.888 UTC [1] LOG:  database system is ready to accept connections
2021-11-09 22:29:12.346 UTC [1] LOG:  received fast shutdown request
2021-11-09 22:29:12.350 UTC [1] LOG:  aborting any active transactions
2021-11-09 22:29:12.351 UTC [2170] FATAL:  terminating connection due to administrator command
2021-11-09 22:29:12.351 UTC [1] LOG:  background worker "logical replication launcher" (PID 27) exited with exit code 1
2021-11-09 22:29:12.354 UTC [22] LOG:  shutting down
2021-11-09 22:29:12.380 UTC [1] LOG:  database system is shut down

PostgreSQL Database directory appears to contain a database; Skipping initialization

2021-11-09 22:39:50.759 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2021-11-09 22:39:50.759 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2021-11-09 22:39:50.768 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2021-11-09 22:39:50.814 UTC [22] LOG:  database system was shut down at 2021-11-09 22:29:12 UTC
2021-11-09 22:39:50.837 UTC [1] LOG:  database system is ready to accept connections
2021-11-12 10:51:17.932 UTC [1] LOG:  received fast shutdown request
2021-11-12 10:51:17.936 UTC [1] LOG:  aborting any active transactions
2021-11-12 10:51:17.936 UTC [6181] FATAL:  terminating connection due to administrator command
2021-11-12 10:51:17.938 UTC [1] LOG:  background worker "logical replication launcher" (PID 28) exited with exit code 1
2021-11-12 10:51:17.940 UTC [23] LOG:  shutting down
2021-11-12 10:51:18.008 UTC [1] LOG:  database system is shut down

PostgreSQL Database directory appears to contain a database; Skipping initialization

2021-11-12 10:51:19.171 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2021-11-12 10:51:19.171 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2021-11-12 10:51:19.186 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2021-11-12 10:51:19.207 UTC [21] LOG:  database system was shut down at 2021-11-12 10:51:17 UTC
2021-11-12 10:51:19.214 UTC [1] LOG:  database system is ready to accept connections`
jon@media-machine:~$ docker logs tandoor_web_recipes_1
Updating database
Operations to perform:
  Apply all migrations: account, admin, auth, authtoken, contenttypes, cookbook, sessions, sites, socialaccount
Running migrations:
  No migrations to apply.
js-reverse file written to /opt/recipes/cookbook/static/django_js_reverse

1 static file copied to '/opt/recipes/staticfiles', 1018 unmodified, 1920 post-processed.
Done
[2021-11-09 04:38:26 +0000] [1] [INFO] Starting gunicorn 20.1.0
[2021-11-09 04:38:26 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1)
[2021-11-09 04:38:26 +0000] [1] [INFO] Using worker: sync
[2021-11-09 04:38:26 +0000] [12] [INFO] Booting worker with pid: 12
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET / HTTP/1.0" 302 0 "https://nginx.deeppass.net/nginx/proxy" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6949 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/css/app.min.60d36f19c390.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/js/jquery-3.5.1.min.dc5e7f18c8d3.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/css/select2.min.9f54e6414f87.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/js/bootstrap.min.61f338f870fc.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/css/select2-bootstrap.dcec0cc93fba.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/themes/select2-bootstrap-theme.d007f71f4d38.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/fontawesome/fontawesome_all.min.2acd020d0b21.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/assets/favicon.5382f9b2ece9.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/assets/favicon-16x16.fe125d94b939.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:30 +1100] "GET /static/assets/favicon-32x32.b7d9707eac91.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:38:31 +1100] "GET /static/assets/safari-pinned-tab.dc487b18028c.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/static/assets/safari-pinned-tab.dc487b18028c.svg" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko)"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "POST /accounts/login/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "GET /search/ HTTP/1.0" 200 17548 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "GET /static/themes/darkly.min.991e7d5ebd97.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "GET /static/django_js_reverse/reverse.16b54da4d320.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "GET /static/vue/js/chunk-vendors.34874a8a512d.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:31 +1100] "GET /static/vue/css/chunk-vendors.07297ee959b2.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:32 +1100] "GET /static/vue/js/recipe_search_view.1914d5ab0574.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:48:32 +1100] "GET /static/vue/css/recipe_search_view.b82f80d40295.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:46 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:50 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:53 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:53 +1100] "GET /static/vue/js/cookbook_view.ce8e0ea82b56.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:53 +1100] "GET /static/vue/css/cookbook_view.ee3ad87acaeb.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:49:59 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:06 +1100] "GET /list/shopping-list/ HTTP/1.0" 200 19006 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:08 +1100] "GET /plan/ HTTP/1.0" 200 17084 "https://recipes.deeppass.net/list/shopping-list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:08 +1100] "GET /static/vue/css/meal_plan_view.35498e5ab30e.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:08 +1100] "GET /static/vue/js/meal_plan_view.263812831693.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:10 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /data/import/url HTTP/1.0" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /jsi18n/ HTTP/1.0" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/vue.min.fb192338844e.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/bootstrap-vue.min.484d959dc285.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/js.cookie.min.92cac509bce9.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/css/bootstrap-vue.min.bfd5de8a9c75.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/vue-multiselect.min.4454b471434f.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/css/vue-multiselect.min.7e898f8cb587.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/vue-jstree.791d9a1ea797.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /static/js/vue-resource.f35ad4319486.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /jsi18n/ HTTP/1.0" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /dal/keyword/?q= HTTP/1.0" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /dal/food/?q= HTTP/1.0" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
/opt/recipes/venv/lib/python3.9/site-packages/django/views/generic/list.py:86: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'cookbook.models.Unit'> QuerySet.
  return self.paginator_class(
172.24.0.4 - - [09/Nov/2021:15:50:30 +1100] "GET /dal/unit/?q= HTTP/1.0" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:34 +1100] "POST /api/recipe-from-source/ HTTP/1.0" 200 5291 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
175 grams butter
100 grams golden caster sugar
3 large eggs
350 millilitres maple syrup
500 grams self-raising flour
175 millilitres hot water
2 large egg whites
125 millilitres maple syrup
125 grams golden caster sugar
0.25 teaspoon cream of tartar
0.25 teaspoon salt
1 teaspoon vanilla extract
0.25 teaspoon maple extract
125 grams pecan nuts
172.24.0.4 - - [09/Nov/2021:15:50:54 +1100] "POST /data/import/url HTTP/1.0" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:55 +1100] "GET /view/recipe/2 HTTP/1.0" 200 17999 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:55 +1100] "GET /static/vue/css/recipe_view.283cecfa2a56.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:55 +1100] "GET /static/vue/js/recipe_view.bd0b59aa9891.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:55 +1100] "GET /api/recipe/2/?share=None HTTP/1.0" 200 10205 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:55 +1100] "GET /static/assets/spinner.8299ad41bba0.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:50:58 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:06 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:08 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:22 +1100] "GET /data/import/url HTTP/1.0" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:22 +1100] "GET /jsi18n/ HTTP/1.0" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
/opt/recipes/venv/lib/python3.9/site-packages/django/views/generic/list.py:86: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'cookbook.models.Unit'> QuerySet.
  return self.paginator_class(
172.24.0.4 - - [09/Nov/2021:15:52:23 +1100] "GET /dal/unit/?q= HTTP/1.0" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:23 +1100] "GET /dal/food/?q= HTTP/1.0" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:23 +1100] "GET /dal/keyword/?q= HTTP/1.0" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:32 +1100] "POST /api/recipe-from-source/ HTTP/1.0" 200 5291 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
175 grams butter
100 grams golden caster sugar
3 large eggs
350 millilitres maple syrup
500 grams self-raising flour
175 millilitres hot water
2 large egg whites
125 millilitres maple syrup
125 grams golden caster sugar
0.25 teaspoon cream of tartar
0.25 teaspoon salt
1 teaspoon vanilla extract
0.25 teaspoon maple extract
125 grams pecan nuts
172.24.0.4 - - [09/Nov/2021:15:52:53 +1100] "POST /data/import/url HTTP/1.0" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:53 +1100] "GET /view/recipe/3 HTTP/1.0" 200 17999 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:52:54 +1100] "GET /api/recipe/3/?share=None HTTP/1.0" 200 10205 "https://recipes.deeppass.net/view/recipe/3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:53:12 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/view/recipe/3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:53:23 +1100] "GET /list/keyword/ HTTP/1.0" 200 17111 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:53:23 +1100] "GET /static/vue/css/model_list_view.b4ad098bddee.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:15:53:23 +1100] "GET /static/vue/js/model_list_view.c7caef7aea0d.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:16:02:19 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:02:19 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:02:19 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:02:31 +1100] "POST /accounts/login/ HTTP/1.0" 200 7113 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:02:44 +1100] "POST /accounts/login/ HTTP/1.0" 200 7113 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:04:48 +1100] "POST /accounts/login/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:04:48 +1100] "GET /search/ HTTP/1.0" 200 17548 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:04:55 +1100] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:16:05:00 +1100] "GET /static/assets/apple-touch-icon.0fcae5e85a72.png HTTP/1.0" 200 0 "-" "MobileSafari/604.1 CFNetwork/978.0.7 Darwin/18.7.0"
172.24.0.4 - - [09/Nov/2021:17:38:45 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [09/Nov/2021:19:33:27 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:27 +1100] "GET /search/ HTTP/1.0" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:28 +1100] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:30 +1100] "GET /static/webfonts/fa-brands-400.cccc9d29470e.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /admin/ HTTP/1.0" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/css/nav_sidebar.0fd434145f4d.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/css/responsive.b128bdf0edef.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/js/nav_sidebar.7605597ddf52.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/css/dashboard.be83f13e4369.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/css/base.1f418065fc2c.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/css/fonts.168bab448fee.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/img/icon-addlink.d519b3bab011.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/img/icon-changelink.18d2fd706348.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/fonts/Roboto-Bold-webfont.50d75e48e0a3.woff HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/fonts/Roboto-Light-webfont.c73eb1ceba33.woff HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:33 +1100] "GET /static/admin/fonts/Roboto-Regular-webfont.35b07eb2f871.woff HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:42 +1100] "GET / HTTP/1.0" 302 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:42 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:45 +1100] "GET /settings/ HTTP/1.0" 200 41056 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:33:45 +1100] "GET /static/custom/js/form_multiselect.8dc17c88ebd1.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:34:53 +1100] "GET /accounts/email/ HTTP/1.0" 200 17342 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:04 +1100] "POST /accounts/email/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:04 +1100] "GET /accounts/email/ HTTP/1.0" 200 19176 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:06 +1100] "POST /accounts/email/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:06 +1100] "GET /accounts/email/ HTTP/1.0" 200 19226 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:31 +1100] "POST /accounts/email/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:35:31 +1100] "GET /accounts/email/ HTTP/1.0" 200 19245 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:00 +1100] "GET /settings/ HTTP/1.0" 200 41056 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:01 +1100] "GET /accounts/password/change/ HTTP/1.0" 200 17906 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:05 +1100] "GET /settings/ HTTP/1.0" 200 41056 "https://recipes.deeppass.net/accounts/password/change/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:07 +1100] "GET /accounts/social/connections/ HTTP/1.0" 200 16640 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:10 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/accounts/social/connections/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:36:12 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:39:47 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:39:53 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:39:55 +1100] "GET /new/recipe/ HTTP/1.0" 200 16891 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [09/Nov/2021:19:39:57 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/new/recipe/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:08:24:23 +1100] "GET /search HTTP/1.0" 301 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [10/Nov/2021:08:24:23 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [10/Nov/2021:08:24:23 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [10/Nov/2021:08:24:24 +1100] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [10/Nov/2021:08:24:25 +1100] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1"
172.24.0.4 - - [10/Nov/2021:09:17:40 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:09:17:40 +1100] "GET /search/ HTTP/1.0" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:09:17:48 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:09:17:53 +1100] "GET /plan/ HTTP/1.0" 200 17084 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:09:20:59 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.4 - - [10/Nov/2021:09:20:59 +1100] "GET /search/ HTTP/1.0" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
[2021-11-09 22:29:12 +0000] [1] [INFO] Handling signal: term
[2021-11-10 09:29:12 +1100] [12] [INFO] Worker exiting (pid: 12)
[2021-11-09 22:29:12 +0000] [1] [INFO] Shutting down: Master
Updating database
Operations to perform:
  Apply all migrations: account, admin, auth, authtoken, contenttypes, cookbook, sessions, sites, socialaccount
Running migrations:
  No migrations to apply.
js-reverse file written to /opt/recipes/cookbook/static/django_js_reverse

1 static file copied to '/opt/recipes/staticfiles', 1018 unmodified, 1920 post-processed.
Done
[2021-11-09 22:40:08 +0000] [1] [INFO] Starting gunicorn 20.1.0
[2021-11-09 22:40:08 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1)
[2021-11-09 22:40:08 +0000] [1] [INFO] Using worker: sync
[2021-11-09 22:40:08 +0000] [12] [INFO] Booting worker with pid: 12
172.24.0.2 - - [10/Nov/2021:09:43:12 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:43:12 +1100] "GET /search/ HTTP/1.0" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:43:25 +1100] "GET /list/keyword/ HTTP/1.0" 200 17111 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:22 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:22 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:22 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:22 +1100] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.0" 200 0 "http://192.168.20.100:8088/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:39 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:39 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [10/Nov/2021:09:59:39 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [11/Nov/2021:08:08:01 +1100] "GET /metrics HTTP/1.0" 404 5806 "-" "netdata/go.d.plugin"
172.24.0.2 - - [11/Nov/2021:23:42:36 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:36 +1100] "GET /search/ HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6949 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/css/app.min.60d36f19c390.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/js/jquery-3.5.1.min.dc5e7f18c8d3.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/css/select2.min.9f54e6414f87.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/css/select2-bootstrap.dcec0cc93fba.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/js/bootstrap.min.61f338f870fc.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/themes/select2-bootstrap-theme.d007f71f4d38.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:37 +1100] "GET /static/fontawesome/fontawesome_all.min.2acd020d0b21.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:38 +1100] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/static/themes/tandoor.min.91b909931a33.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:38 +1100] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/static/fontawesome/fontawesome_all.min.2acd020d0b21.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [11/Nov/2021:23:42:38 +1100] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/static/themes/tandoor.min.91b909931a33.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36"
172.24.0.2 - - [12/Nov/2021:08:01:46 +1100] "GET /metrics HTTP/1.0" 404 5806 "-" "netdata/go.d.plugin"
172.24.0.2 - - [12/Nov/2021:12:46:24 +1100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:24 +1100] "GET /search/ HTTP/1.0" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:24 +1100] "GET /static/vue/js/chunk-vendors.34874a8a512d.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:36 +1100] "GET /admin/ HTTP/1.0" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:36 +1100] "GET /static/admin/css/responsive.b128bdf0edef.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:36 +1100] "GET /static/admin/img/icon-addlink.d519b3bab011.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:36 +1100] "GET /static/admin/fonts/Roboto-Light-webfont.c73eb1ceba33.woff HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /admin/auth/user/ HTTP/1.0" 200 21056 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /admin/jsi18n/ HTTP/1.0" 200 3195 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/css/changelists.c70d77c47e69.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/prepopulate.bd2361dfd64d.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/admin/RelatedObjectLookups.b4d76b6aaf0b.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/urlify.25cc3eac8123.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/actions.3edba334d0a4.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/vendor/jquery/jquery.min.dc5e7f18c8d3.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/img/search.7cf54ff789c6.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/vendor/xregexp/xregexp.min.b0439563a5d3.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/img/icon-yes.d2f9f035226a.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/core.ccd84108ec57.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:41 +1100] "GET /static/admin/js/jquery.init.b7781a0897fc.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:42 +1100] "GET /static/admin/img/sorting-icons.3a097b59f104.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:46:59 +1100] "GET /admin/ HTTP/1.0" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:47:04 +1100] "GET /settings/ HTTP/1.0" 200 41056 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:47:19 +1100] "GET /system/ HTTP/1.0" 200 19033 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:49:05 +1100] "GET /search/ HTTP/1.0" 200 16999 "https://recipes.deeppass.net/system/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:49:18 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:12:50:32 +1100] "GET /system/ HTTP/1.0" 200 19505 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15"
[2021-11-12 10:51:17 +0000] [1] [INFO] Handling signal: term
[2021-11-12 21:51:17 +1100] [12] [INFO] Worker exiting (pid: 12)
[2021-11-12 10:51:18 +0000] [1] [INFO] Shutting down: Master
Updating database
Operations to perform:
  Apply all migrations: account, admin, auth, authtoken, contenttypes, cookbook, sessions, sites, socialaccount
Running migrations:
  No migrations to apply.
js-reverse file written to /opt/recipes/cookbook/static/django_js_reverse

1 static file copied to '/opt/recipes/staticfiles', 1018 unmodified, 1920 post-processed.
Done
[2021-11-12 10:51:31 +0000] [1] [INFO] Starting gunicorn 20.1.0
[2021-11-12 10:51:31 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1)
[2021-11-12 10:51:31 +0000] [1] [INFO] Using worker: sync
[2021-11-12 10:51:31 +0000] [11] [INFO] Booting worker with pid: 11
172.24.0.2 - - [12/Nov/2021:21:51:32 +1100] "GET / HTTP/1.0" 302 0 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:32 +1100] "GET /search/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /accounts/login/?next=/search/ HTTP/1.0" 200 6949 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/css/app.min.60d36f19c390.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/assets/favicon-32x32.b7d9707eac91.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/assets/favicon.5382f9b2ece9.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:33 +1100] "GET /static/assets/favicon-16x16.fe125d94b939.png HTTP/1.0" 200 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:34 +1100] "GET /static/assets/safari-pinned-tab.dc487b18028c.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/static/assets/safari-pinned-tab.dc487b18028c.svg" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko)"
172.24.0.2 - - [12/Nov/2021:21:51:40 +1100] "POST /accounts/login/ HTTP/1.0" 302 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:41 +1100] "GET /search/ HTTP/1.0" 200 17548 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:51:41 +1100] "GET /static/vue/css/chunk-vendors.07297ee959b2.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /data/import/url HTTP/1.0" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /jsi18n/ HTTP/1.0" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /static/js/js.cookie.min.92cac509bce9.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /static/css/bootstrap-vue.min.bfd5de8a9c75.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /static/js/vue-resource.f35ad4319486.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /static/js/vue-jstree.791d9a1ea797.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /static/css/vue-multiselect.min.7e898f8cb587.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /dal/keyword/?q= HTTP/1.0" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
/opt/recipes/venv/lib/python3.9/site-packages/django/views/generic/list.py:86: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'cookbook.models.Unit'> QuerySet.
  return self.paginator_class(
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /dal/unit/?q= HTTP/1.0" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:02 +1100] "GET /dal/food/?q= HTTP/1.0" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:52:08 +1100] "POST /api/recipe-from-source/ HTTP/1.0" 200 4761 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
200 grams soft unsalted butter
75 grams white cooking chocolate
175 grams soft light brown sugar
2 teaspoons ground ginger
3 large eggs (at room temperature) - lightly whisked
100 grams walnuts
150 grams ground almonds
0 None creme fraiche
0 None raspberries
172.24.0.2 - - [12/Nov/2021:21:53:03 +1100] "POST /data/import/url HTTP/1.0" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:03 +1100] "GET /view/recipe/4 HTTP/1.0" 200 17997 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:03 +1100] "GET /static/vue/js/recipe_view.bd0b59aa9891.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:04 +1100] "GET /api/recipe/4/?share=None HTTP/1.0" 200 7996 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:04 +1100] "GET /static/assets/spinner.8299ad41bba0.svg HTTP/1.0" 200 0 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:38 +1100] "GET /list/keyword/ HTTP/1.0" 200 17111 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:39 +1100] "GET /static/vue/css/model_list_view.b4ad098bddee.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:45 +1100] "GET /books/ HTTP/1.0" 200 16985 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:45 +1100] "GET /static/vue/css/cookbook_view.ee3ad87acaeb.css HTTP/1.0" 200 0 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
172.24.0.2 - - [12/Nov/2021:21:53:45 +1100] "GET /static/vue/js/cookbook_view.ce8e0ea82b56.js HTTP/1.0" 200 0 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15"
ghost commented 2 years ago

Last one here. I should point out in case it matters that the names of the logs are not as @MaxJa4 stated - mine all start with tandoor, as that is the name of the containers.

Anyway,

jon@media-machine:~$ docker logs recipes_nginx_recipes_1
Error: No such container: recipes_nginx_recipes_1
jon@media-machine:~$ docker logs tandoor_nginx_recipes_1
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2021/11/09 04:38:15 [notice] 1#1: using the "epoll" event method
2021/11/09 04:38:15 [notice] 1#1: nginx/1.21.3
2021/11/09 04:38:15 [notice] 1#1: built by gcc 10.3.1 20210424 (Alpine 10.3.1_git20210424)
2021/11/09 04:38:15 [notice] 1#1: OS: Linux 5.11.0-38-generic
2021/11/09 04:38:15 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
2021/11/09 04:38:15 [notice] 1#1: start worker processes
2021/11/09 04:38:15 [notice] 1#1: start worker process 22
2021/11/09 04:38:15 [notice] 1#1: start worker process 23
2021/11/09 04:38:15 [notice] 1#1: start worker process 24
2021/11/09 04:38:15 [notice] 1#1: start worker process 25
2021/11/09 04:38:15 [notice] 1#1: start worker process 26
2021/11/09 04:38:15 [notice] 1#1: start worker process 27
2021/11/09 04:38:15 [notice] 1#1: start worker process 28
2021/11/09 04:38:15 [notice] 1#1: start worker process 29
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET / HTTP/1.1" 302 0 "https://nginx.deeppass.net/nginx/proxy" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6949 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.1" 200 27666 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.82"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/css/app.min.60d36f19c390.css HTTP/1.1" 200 4117 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.44"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.1" 200 19867 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.173"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.1" 200 7503 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.173"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/js/jquery-3.5.1.min.dc5e7f18c8d3.js HTTP/1.1" 200 30879 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.253"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/css/select2.min.9f54e6414f87.css HTTP/1.1" 200 1978 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.209"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/js/bootstrap.min.61f338f870fc.js HTTP/1.1" 200 15853 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.78"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/css/select2-bootstrap.dcec0cc93fba.css HTTP/1.1" 200 3676 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.26"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/themes/select2-bootstrap-theme.d007f71f4d38.css HTTP/1.1" 200 3679 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.181"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.1" 200 35616 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.242"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/fontawesome/fontawesome_all.min.2acd020d0b21.css HTTP/1.1" 200 12346 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.25"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.1" 200 75728 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.52"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.1" 200 7900 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.76"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.1" 200 7776 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.74"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.1" 200 13584 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.225"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/assets/favicon.5382f9b2ece9.svg HTTP/1.1" 200 2189 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.141"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/assets/favicon-16x16.fe125d94b939.png HTTP/1.1" 200 1164 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.121"
172.24.0.1 - - [09/Nov/2021:04:38:30 +0000] "GET /static/assets/favicon-32x32.b7d9707eac91.png HTTP/1.1" 200 2232 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.151"
172.24.0.1 - - [09/Nov/2021:04:38:31 +0000] "GET /static/assets/safari-pinned-tab.dc487b18028c.svg HTTP/1.1" 200 2017 "https://recipes.deeppass.net/static/assets/safari-pinned-tab.dc487b18028c.svg" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko)" "108.162.249.30"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "POST /accounts/login/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "GET /search/ HTTP/1.1" 200 17548 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "GET /static/themes/darkly.min.991e7d5ebd97.css HTTP/1.1" 200 25256 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.148"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "GET /static/django_js_reverse/reverse.16b54da4d320.js HTTP/1.1" 200 4747 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.100"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "GET /static/vue/js/chunk-vendors.34874a8a512d.js HTTP/1.1" 200 531386 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.123"
172.24.0.1 - - [09/Nov/2021:04:48:31 +0000] "GET /static/vue/css/chunk-vendors.07297ee959b2.css HTTP/1.1" 200 34010 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.107"
172.24.0.1 - - [09/Nov/2021:04:48:32 +0000] "GET /static/vue/js/recipe_search_view.1914d5ab0574.js HTTP/1.1" 200 47612 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.78"
172.24.0.1 - - [09/Nov/2021:04:48:32 +0000] "GET /static/vue/css/recipe_search_view.b82f80d40295.css HTTP/1.1" 200 152 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.92"
172.24.0.1 - - [09/Nov/2021:04:49:46 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:49:50 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:49:53 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:49:53 +0000] "GET /static/vue/js/cookbook_view.ce8e0ea82b56.js HTTP/1.1" 200 47583 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.159"
172.24.0.1 - - [09/Nov/2021:04:49:53 +0000] "GET /static/vue/css/cookbook_view.ee3ad87acaeb.css HTTP/1.1" 200 428 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.152"
172.24.0.1 - - [09/Nov/2021:04:49:59 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:06 +0000] "GET /list/shopping-list/ HTTP/1.1" 200 19006 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:08 +0000] "GET /plan/ HTTP/1.1" 200 17084 "https://recipes.deeppass.net/list/shopping-list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:08 +0000] "GET /static/vue/css/meal_plan_view.35498e5ab30e.css HTTP/1.1" 200 1053 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.95"
172.24.0.1 - - [09/Nov/2021:04:50:08 +0000] "GET /static/vue/js/meal_plan_view.263812831693.js HTTP/1.1" 200 46450 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.215"
172.24.0.1 - - [09/Nov/2021:04:50:10 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/plan/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /data/import/url HTTP/1.1" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /jsi18n/ HTTP/1.1" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/vue.min.fb192338844e.js HTTP/1.1" 200 34038 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.253"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/bootstrap-vue.min.484d959dc285.js HTTP/1.1" 200 101769 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.22"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/js.cookie.min.92cac509bce9.js HTTP/1.1" 200 822 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.44"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/css/bootstrap-vue.min.bfd5de8a9c75.css HTTP/1.1" 200 9649 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.132"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/vue-multiselect.min.4454b471434f.js HTTP/1.1" 200 12339 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.247"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/css/vue-multiselect.min.7e898f8cb587.css HTTP/1.1" 200 1722 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.105"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/vue-jstree.791d9a1ea797.js HTTP/1.1" 200 13178 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.179"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /static/js/vue-resource.f35ad4319486.js HTTP/1.1" 200 5476 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.87"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /jsi18n/ HTTP/1.1" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /dal/keyword/?q= HTTP/1.1" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /dal/food/?q= HTTP/1.1" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:30 +0000] "GET /dal/unit/?q= HTTP/1.1" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:34 +0000] "POST /api/recipe-from-source/ HTTP/1.1" 200 5291 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:54 +0000] "POST /data/import/url HTTP/1.1" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /view/recipe/2 HTTP/1.1" 200 17999 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /static/vue/css/recipe_view.283cecfa2a56.css HTTP/1.1" 200 88 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.104"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /static/vue/js/recipe_view.bd0b59aa9891.js HTTP/1.1" 200 47095 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.42"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /api/recipe/2/?share=None HTTP/1.1" 200 10205 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /static/assets/spinner.8299ad41bba0.svg HTTP/1.1" 200 8598 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.69"
172.24.0.1 - - [09/Nov/2021:04:50:55 +0000] "GET /media/recipes/7cd3518a-cd1d-4eda-a474-ba389ad42fe2_2.jpeg HTTP/1.1" 200 293345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.141"
172.24.0.1 - - [09/Nov/2021:04:50:58 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/view/recipe/2" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:06 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:08 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:22 +0000] "GET /data/import/url HTTP/1.1" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:22 +0000] "GET /jsi18n/ HTTP/1.1" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:23 +0000] "GET /dal/unit/?q= HTTP/1.1" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:23 +0000] "GET /dal/food/?q= HTTP/1.1" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:23 +0000] "GET /dal/keyword/?q= HTTP/1.1" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:32 +0000] "POST /api/recipe-from-source/ HTTP/1.1" 200 5291 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:53 +0000] "POST /data/import/url HTTP/1.1" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:53 +0000] "GET /view/recipe/3 HTTP/1.1" 200 17999 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:54 +0000] "GET /api/recipe/3/?share=None HTTP/1.1" 200 10205 "https://recipes.deeppass.net/view/recipe/3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:52:54 +0000] "GET /media/recipes/9553a1e0-6b23-4d5e-b5b1-61c0bdbb2303_3.jpeg HTTP/1.1" 200 293345 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.177"
172.24.0.1 - - [09/Nov/2021:04:53:12 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/view/recipe/3" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:53:23 +0000] "GET /list/keyword/ HTTP/1.1" 200 17111 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:04:53:23 +0000] "GET /static/vue/css/model_list_view.b4ad098bddee.css HTTP/1.1" 200 333 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.175"
172.24.0.1 - - [09/Nov/2021:04:53:23 +0000] "GET /static/vue/js/model_list_view.c7caef7aea0d.js HTTP/1.1" 200 55201 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.77"
172.24.0.1 - - [09/Nov/2021:05:02:19 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:05:02:19 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:05:02:19 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:05:02:31 +0000] "POST /accounts/login/ HTTP/1.1" 200 7113 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:05:02:44 +0000] "POST /accounts/login/ HTTP/1.1" 200 7113 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:05:04:48 +0000] "POST /accounts/login/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.219"
172.24.0.1 - - [09/Nov/2021:05:04:48 +0000] "GET /search/ HTTP/1.1" 200 17548 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.219"
172.24.0.1 - - [09/Nov/2021:05:04:55 +0000] "GET /manifest.json HTTP/1.1" 200 1117 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:05:05:00 +0000] "GET /static/assets/apple-touch-icon.0fcae5e85a72.png HTTP/1.1" 200 9768 "-" "MobileSafari/604.1 CFNetwork/978.0.7 Darwin/18.7.0" "108.162.250.181"
172.24.0.1 - - [09/Nov/2021:06:38:45 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/accounts/login/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:08:33:27 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:08:33:27 +0000] "GET /search/ HTTP/1.1" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:08:33:28 +0000] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.1" 200 13584 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.225"
172.24.0.1 - - [09/Nov/2021:08:33:30 +0000] "GET /static/webfonts/fa-brands-400.cccc9d29470e.woff2 HTTP/1.1" 200 75336 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.132"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /admin/ HTTP/1.1" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/css/nav_sidebar.0fd434145f4d.css HTTP/1.1" 200 673 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.78"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/css/responsive.b128bdf0edef.css HTTP/1.1" 200 3389 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.240"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/js/nav_sidebar.7605597ddf52.js HTTP/1.1" 200 412 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.11"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/css/dashboard.be83f13e4369.css HTTP/1.1" 200 245 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.92"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/css/base.1f418065fc2c.css HTTP/1.1" 200 4649 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.36"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/css/fonts.168bab448fee.css HTTP/1.1" 200 189 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.169"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/img/icon-addlink.d519b3bab011.svg HTTP/1.1" 200 206 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.86"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/img/icon-changelink.18d2fd706348.svg HTTP/1.1" 200 269 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.239"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/fonts/Roboto-Bold-webfont.50d75e48e0a3.woff HTTP/1.1" 200 86184 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.81"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/fonts/Roboto-Light-webfont.c73eb1ceba33.woff HTTP/1.1" 200 85692 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.30"
172.24.0.1 - - [09/Nov/2021:08:33:33 +0000] "GET /static/admin/fonts/Roboto-Regular-webfont.35b07eb2f871.woff HTTP/1.1" 200 85876 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.72"
172.24.0.1 - - [09/Nov/2021:08:33:42 +0000] "GET / HTTP/1.1" 302 0 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:33:42 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:33:45 +0000] "GET /settings/ HTTP/1.1" 200 41056 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:33:45 +0000] "GET /static/custom/js/form_multiselect.8dc17c88ebd1.js HTTP/1.1" 200 74 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.54"
172.24.0.1 - - [09/Nov/2021:08:34:53 +0000] "GET /accounts/email/ HTTP/1.1" 200 17342 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:04 +0000] "POST /accounts/email/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:04 +0000] "GET /accounts/email/ HTTP/1.1" 200 19176 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:06 +0000] "POST /accounts/email/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:06 +0000] "GET /accounts/email/ HTTP/1.1" 200 19226 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:31 +0000] "POST /accounts/email/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:35:31 +0000] "GET /accounts/email/ HTTP/1.1" 200 19245 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:00 +0000] "GET /settings/ HTTP/1.1" 200 41056 "https://recipes.deeppass.net/accounts/email/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:01 +0000] "GET /accounts/password/change/ HTTP/1.1" 200 17906 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:05 +0000] "GET /settings/ HTTP/1.1" 200 41056 "https://recipes.deeppass.net/accounts/password/change/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:07 +0000] "GET /accounts/social/connections/ HTTP/1.1" 200 16640 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:10 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/accounts/social/connections/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:36:12 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:39:47 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:39:53 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:39:55 +0000] "GET /new/recipe/ HTTP/1.1" 200 16891 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:08:39:57 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/new/recipe/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.13"
172.24.0.1 - - [09/Nov/2021:21:24:23 +0000] "GET /search HTTP/1.1" 301 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:21:24:23 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:21:24:23 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6949 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:21:24:24 +0000] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.1" 200 35616 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.249.242"
172.24.0.1 - - [09/Nov/2021:21:24:25 +0000] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.1" 200 7900 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1" "108.162.249.76"
172.24.0.1 - - [09/Nov/2021:22:17:40 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:22:17:40 +0000] "GET /search/ HTTP/1.1" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:22:17:48 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.219"
172.24.0.1 - - [09/Nov/2021:22:17:53 +0000] "GET /plan/ HTTP/1.1" 200 17084 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.219"
172.24.0.1 - - [09/Nov/2021:22:20:59 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [09/Nov/2021:22:20:59 +0000] "GET /search/ HTTP/1.1" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
2021/11/09 22:29:12 [notice] 1#1: signal 3 (SIGQUIT) received, shutting down
2021/11/09 22:29:12 [notice] 22#22: gracefully shutting down
2021/11/09 22:29:12 [notice] 22#22: exiting
2021/11/09 22:29:12 [notice] 23#23: gracefully shutting down
2021/11/09 22:29:12 [notice] 24#24: gracefully shutting down
2021/11/09 22:29:12 [notice] 23#23: exiting
2021/11/09 22:29:12 [notice] 24#24: exiting
2021/11/09 22:29:12 [notice] 24#24: exit
2021/11/09 22:29:12 [notice] 23#23: exit
2021/11/09 22:29:12 [notice] 22#22: exit
2021/11/09 22:29:12 [notice] 26#26: gracefully shutting down
2021/11/09 22:29:12 [notice] 27#27: gracefully shutting down
2021/11/09 22:29:12 [notice] 28#28: gracefully shutting down
2021/11/09 22:29:12 [notice] 26#26: exiting
2021/11/09 22:29:12 [notice] 29#29: gracefully shutting down
2021/11/09 22:29:12 [notice] 27#27: exiting
2021/11/09 22:29:12 [notice] 29#29: exiting
2021/11/09 22:29:12 [notice] 28#28: exiting
2021/11/09 22:29:12 [notice] 26#26: exit
2021/11/09 22:29:12 [notice] 27#27: exit
2021/11/09 22:29:12 [notice] 29#29: exit
2021/11/09 22:29:12 [notice] 28#28: exit
2021/11/09 22:29:12 [notice] 25#25: gracefully shutting down
2021/11/09 22:29:12 [notice] 25#25: exiting
2021/11/09 22:29:12 [notice] 25#25: exit
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 22
2021/11/09 22:29:12 [notice] 1#1: worker process 22 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: signal 29 (SIGIO) received
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 23
2021/11/09 22:29:12 [notice] 1#1: worker process 23 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: signal 29 (SIGIO) received
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 27
2021/11/09 22:29:12 [notice] 1#1: worker process 25 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: worker process 26 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: worker process 27 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: worker process 28 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: signal 29 (SIGIO) received
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 25
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 24
2021/11/09 22:29:12 [notice] 1#1: worker process 24 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: signal 17 (SIGCHLD) received from 29
2021/11/09 22:29:12 [notice] 1#1: worker process 29 exited with code 0
2021/11/09 22:29:12 [notice] 1#1: exit
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2021/11/09 22:39:50 [notice] 1#1: using the "epoll" event method
2021/11/09 22:39:50 [notice] 1#1: nginx/1.21.3
2021/11/09 22:39:50 [notice] 1#1: built by gcc 10.3.1 20210424 (Alpine 10.3.1_git20210424)
2021/11/09 22:39:50 [notice] 1#1: OS: Linux 5.11.0-40-generic
2021/11/09 22:39:50 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
2021/11/09 22:39:50 [notice] 1#1: start worker processes
2021/11/09 22:39:50 [notice] 1#1: start worker process 22
2021/11/09 22:39:50 [notice] 1#1: start worker process 23
2021/11/09 22:39:50 [notice] 1#1: start worker process 24
2021/11/09 22:39:50 [notice] 1#1: start worker process 25
2021/11/09 22:39:50 [notice] 1#1: start worker process 26
2021/11/09 22:39:50 [notice] 1#1: start worker process 27
2021/11/09 22:39:50 [notice] 1#1: start worker process 28
2021/11/09 22:39:50 [notice] 1#1: start worker process 29
172.24.0.1 - - [09/Nov/2021:22:43:12 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.150"
172.24.0.1 - - [09/Nov/2021:22:43:12 +0000] "GET /search/ HTTP/1.1" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.150"
172.24.0.1 - - [09/Nov/2021:22:43:25 +0000] "GET /list/keyword/ HTTP/1.1" 200 17111 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.219"
192.168.20.50 - - [09/Nov/2021:22:59:22 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:22 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:22 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:22 +0000] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.1" 200 27666 "http://192.168.20.100:8088/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:39 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:39 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
192.168.20.50 - - [09/Nov/2021:22:59:39 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "-"
172.24.0.1 - - [10/Nov/2021:21:08:01 +0000] "GET /metrics HTTP/1.1" 404 5806 "-" "netdata/go.d.plugin" "-"
172.24.0.1 - - [11/Nov/2021:12:42:36 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.205"
172.24.0.1 - - [11/Nov/2021:12:42:36 +0000] "GET /search/ HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.205"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6949 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.205"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/css/app.min.60d36f19c390.css HTTP/1.1" 200 4117 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.190"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/js/jquery-3.5.1.min.dc5e7f18c8d3.js HTTP/1.1" 200 30879 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.88"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/css/select2.min.9f54e6414f87.css HTTP/1.1" 200 1978 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.224"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.1" 200 7503 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.154"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.1" 200 19867 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.69.135"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/css/select2-bootstrap.dcec0cc93fba.css HTTP/1.1" 200 3676 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.169"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.1" 200 27666 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.71.33"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/js/bootstrap.min.61f338f870fc.js HTTP/1.1" 200 15853 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.71.92"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/themes/select2-bootstrap-theme.d007f71f4d38.css HTTP/1.1" 200 3679 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.168"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.1" 200 35616 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.187"
172.24.0.1 - - [11/Nov/2021:12:42:37 +0000] "GET /static/fontawesome/fontawesome_all.min.2acd020d0b21.css HTTP/1.1" 200 12346 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "108.162.221.112"
172.24.0.1 - - [11/Nov/2021:12:42:38 +0000] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.1" 200 7776 "https://recipes.deeppass.net/static/themes/tandoor.min.91b909931a33.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.234"
172.24.0.1 - - [11/Nov/2021:12:42:38 +0000] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.1" 200 75728 "https://recipes.deeppass.net/static/fontawesome/fontawesome_all.min.2acd020d0b21.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.68.36"
172.24.0.1 - - [11/Nov/2021:12:42:38 +0000] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.1" 200 7900 "https://recipes.deeppass.net/static/themes/tandoor.min.91b909931a33.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36" "172.69.71.156"
172.24.0.1 - - [11/Nov/2021:21:01:46 +0000] "GET /metrics HTTP/1.1" 404 5806 "-" "netdata/go.d.plugin" "-"
172.24.0.1 - - [12/Nov/2021:01:46:24 +0000] "GET / HTTP/1.1" 302 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.150"
172.24.0.1 - - [12/Nov/2021:01:46:24 +0000] "GET /search/ HTTP/1.1" 200 16999 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.150"
2021/11/12 01:46:24 [warn] 22#22: *57 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 172.24.0.1, server: localhost, request: "GET /static/vue/js/chunk-vendors.34874a8a512d.js HTTP/1.1", upstream: "http://172.24.0.4:8080/static/vue/js/chunk-vendors.34874a8a512d.js", host: "recipes.deeppass.net", referrer: "https://recipes.deeppass.net/search/"
172.24.0.1 - - [12/Nov/2021:01:46:24 +0000] "GET /static/vue/js/chunk-vendors.34874a8a512d.js HTTP/1.1" 200 531386 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.123"
172.24.0.1 - - [12/Nov/2021:01:46:36 +0000] "GET /admin/ HTTP/1.1" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:46:36 +0000] "GET /static/admin/css/responsive.b128bdf0edef.css HTTP/1.1" 200 3389 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.240"
172.24.0.1 - - [12/Nov/2021:01:46:36 +0000] "GET /static/admin/img/icon-addlink.d519b3bab011.svg HTTP/1.1" 200 206 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.86"
172.24.0.1 - - [12/Nov/2021:01:46:36 +0000] "GET /static/admin/fonts/Roboto-Light-webfont.c73eb1ceba33.woff HTTP/1.1" 200 85692 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.30"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /admin/auth/user/ HTTP/1.1" 200 21056 "https://recipes.deeppass.net/admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /admin/jsi18n/ HTTP/1.1" 200 3195 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/css/changelists.c70d77c47e69.css HTTP/1.1" 200 1566 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.151"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/prepopulate.bd2361dfd64d.js HTTP/1.1" 200 536 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.20"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/admin/RelatedObjectLookups.b4d76b6aaf0b.js HTTP/1.1" 200 1571 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.251"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/urlify.25cc3eac8123.js HTTP/1.1" 200 2581 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.173"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/actions.3edba334d0a4.js HTTP/1.1" 200 1874 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.56"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/vendor/jquery/jquery.min.dc5e7f18c8d3.js HTTP/1.1" 200 30879 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.52"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/img/search.7cf54ff789c6.svg HTTP/1.1" 200 264 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.119"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/vendor/xregexp/xregexp.min.b0439563a5d3.js HTTP/1.1" 200 37609 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.249.148"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/img/icon-yes.d2f9f035226a.svg HTTP/1.1" 200 266 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.211"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/core.ccd84108ec57.js HTTP/1.1" 200 1505 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.119"
172.24.0.1 - - [12/Nov/2021:01:46:41 +0000] "GET /static/admin/js/jquery.init.b7781a0897fc.js HTTP/1.1" 200 236 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.127"
172.24.0.1 - - [12/Nov/2021:01:46:42 +0000] "GET /static/admin/img/sorting-icons.3a097b59f104.svg HTTP/1.1" 200 366 "https://recipes.deeppass.net/admin/auth/user/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.113"
172.24.0.1 - - [12/Nov/2021:01:46:59 +0000] "GET /admin/ HTTP/1.1" 200 21160 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:47:04 +0000] "GET /settings/ HTTP/1.1" 200 41056 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:47:19 +0000] "GET /system/ HTTP/1.1" 200 19033 "https://recipes.deeppass.net/settings/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:49:05 +0000] "GET /search/ HTTP/1.1" 200 16999 "https://recipes.deeppass.net/system/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:49:18 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:01:50:32 +0000] "GET /system/ HTTP/1.1" 200 19505 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15" "108.162.250.249"
2021/11/12 10:51:17 [notice] 1#1: signal 3 (SIGQUIT) received, shutting down
2021/11/12 10:51:17 [notice] 23#23: gracefully shutting down
2021/11/12 10:51:17 [notice] 24#24: gracefully shutting down
2021/11/12 10:51:17 [notice] 26#26: gracefully shutting down
2021/11/12 10:51:17 [notice] 25#25: gracefully shutting down
2021/11/12 10:51:17 [notice] 28#28: gracefully shutting down
2021/11/12 10:51:17 [notice] 24#24: exiting
2021/11/12 10:51:17 [notice] 23#23: exiting
2021/11/12 10:51:17 [notice] 25#25: exiting
2021/11/12 10:51:17 [notice] 26#26: exiting
2021/11/12 10:51:17 [notice] 28#28: exiting
2021/11/12 10:51:17 [notice] 28#28: exit
2021/11/12 10:51:17 [notice] 26#26: exit
2021/11/12 10:51:17 [notice] 24#24: exit
2021/11/12 10:51:17 [notice] 23#23: exit
2021/11/12 10:51:17 [notice] 25#25: exit
2021/11/12 10:51:17 [notice] 22#22: gracefully shutting down
2021/11/12 10:51:17 [notice] 22#22: exiting
2021/11/12 10:51:17 [notice] 29#29: gracefully shutting down
2021/11/12 10:51:17 [notice] 27#27: gracefully shutting down
2021/11/12 10:51:17 [notice] 29#29: exiting
2021/11/12 10:51:17 [notice] 27#27: exiting
2021/11/12 10:51:17 [notice] 22#22: exit
2021/11/12 10:51:17 [notice] 29#29: exit
2021/11/12 10:51:17 [notice] 27#27: exit
2021/11/12 10:51:17 [notice] 1#1: signal 17 (SIGCHLD) received from 24
2021/11/12 10:51:17 [notice] 1#1: worker process 23 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: worker process 24 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: worker process 26 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: worker process 29 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: signal 29 (SIGIO) received
2021/11/12 10:51:17 [notice] 1#1: signal 17 (SIGCHLD) received from 23
2021/11/12 10:51:17 [notice] 1#1: signal 17 (SIGCHLD) received from 25
2021/11/12 10:51:17 [notice] 1#1: worker process 22 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: worker process 25 exited with code 0
2021/11/12 10:51:17 [notice] 1#1: signal 29 (SIGIO) received
2021/11/12 10:51:18 [notice] 1#1: signal 17 (SIGCHLD) received from 27
2021/11/12 10:51:18 [notice] 1#1: worker process 27 exited with code 0
2021/11/12 10:51:18 [notice] 1#1: worker process 28 exited with code 0
2021/11/12 10:51:18 [notice] 1#1: exit
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2021/11/12 10:51:19 [notice] 1#1: using the "epoll" event method
2021/11/12 10:51:19 [notice] 1#1: nginx/1.21.3
2021/11/12 10:51:19 [notice] 1#1: built by gcc 10.3.1 20210424 (Alpine 10.3.1_git20210424)
2021/11/12 10:51:19 [notice] 1#1: OS: Linux 5.11.0-40-generic
2021/11/12 10:51:19 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
2021/11/12 10:51:19 [notice] 1#1: start worker processes
2021/11/12 10:51:19 [notice] 1#1: start worker process 23
2021/11/12 10:51:19 [notice] 1#1: start worker process 24
2021/11/12 10:51:19 [notice] 1#1: start worker process 25
2021/11/12 10:51:19 [notice] 1#1: start worker process 26
2021/11/12 10:51:19 [notice] 1#1: start worker process 27
2021/11/12 10:51:19 [notice] 1#1: start worker process 28
2021/11/12 10:51:19 [notice] 1#1: start worker process 29
2021/11/12 10:51:19 [notice] 1#1: start worker process 30
2021/11/12 10:51:24 [error] 23#23: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.24.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "http://172.24.0.4:8080/", host: "recipes.deeppass.net"
172.24.0.1 - - [12/Nov/2021:10:51:24 +0000] "GET / HTTP/1.1" 502 157 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.219"
2021/11/12 10:51:29 [error] 23#23: *3 connect() failed (111: Connection refused) while connecting to upstream, client: 172.24.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "http://172.24.0.4:8080/", host: "recipes.deeppass.net", referrer: "https://recipes.deeppass.net/"
172.24.0.1 - - [12/Nov/2021:10:51:29 +0000] "GET / HTTP/1.1" 502 157 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:32 +0000] "GET / HTTP/1.1" 302 0 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:32 +0000] "GET /search/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /accounts/login/?next=/search/ HTTP/1.1" 200 6949 "https://recipes.deeppass.net/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/themes/tandoor.min.91b909931a33.css HTTP/1.1" 200 27666 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.82"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/css/app.min.60d36f19c390.css HTTP/1.1" 200 4117 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.44"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/js/select2.min.0f64f3a3a0c6.js HTTP/1.1" 200 19867 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.173"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/js/popper.min.84415b7368fd.js HTTP/1.1" 200 7503 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.173"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/assets/brand_logo.6ebe02bf6707.png HTTP/1.1" 200 35616 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.242"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/webfonts/poppins_latin_400.9ed361bba848.woff2 HTTP/1.1" 200 7900 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.76"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/webfonts/fa-solid-900.44d537ab79f9.woff2 HTTP/1.1" 200 75728 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.52"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/webfonts/poppins_latin_500.84780596e268.woff2 HTTP/1.1" 200 7776 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.74"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/webfonts/fa-regular-400.f5f2566b93e8.woff2 HTTP/1.1" 200 13584 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.225"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/assets/favicon-32x32.b7d9707eac91.png HTTP/1.1" 200 2232 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.151"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/assets/favicon.5382f9b2ece9.svg HTTP/1.1" 200 2189 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.141"
172.24.0.1 - - [12/Nov/2021:10:51:33 +0000] "GET /static/assets/favicon-16x16.fe125d94b939.png HTTP/1.1" 200 1164 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.121"
172.24.0.1 - - [12/Nov/2021:10:51:34 +0000] "GET /static/assets/safari-pinned-tab.dc487b18028c.svg HTTP/1.1" 200 2017 "https://recipes.deeppass.net/static/assets/safari-pinned-tab.dc487b18028c.svg" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko)" "108.162.249.30"
172.24.0.1 - - [12/Nov/2021:10:51:40 +0000] "POST /accounts/login/ HTTP/1.1" 302 0 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:41 +0000] "GET /search/ HTTP/1.1" 200 17548 "https://recipes.deeppass.net/accounts/login/?next=/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:51:41 +0000] "GET /static/vue/css/chunk-vendors.07297ee959b2.css HTTP/1.1" 200 34010 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.107"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /data/import/url HTTP/1.1" 200 72385 "https://recipes.deeppass.net/search/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /jsi18n/ HTTP/1.1" 200 13866 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /static/js/js.cookie.min.92cac509bce9.js HTTP/1.1" 200 822 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.44"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /static/css/bootstrap-vue.min.bfd5de8a9c75.css HTTP/1.1" 200 9649 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.132"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /static/js/vue-resource.f35ad4319486.js HTTP/1.1" 200 5476 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.87"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /static/js/vue-jstree.791d9a1ea797.js HTTP/1.1" 200 13178 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.179"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /static/css/vue-multiselect.min.7e898f8cb587.css HTTP/1.1" 200 1722 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.105"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /dal/keyword/?q= HTTP/1.1" 200 46 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /dal/unit/?q= HTTP/1.1" 200 286 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:52:02 +0000] "GET /dal/food/?q= HTTP/1.1" 200 726 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:52:08 +0000] "POST /api/recipe-from-source/ HTTP/1.1" 200 4761 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:03 +0000] "POST /data/import/url HTTP/1.1" 200 14 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:03 +0000] "GET /view/recipe/4 HTTP/1.1" 200 17997 "https://recipes.deeppass.net/data/import/url" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:03 +0000] "GET /static/vue/js/recipe_view.bd0b59aa9891.js HTTP/1.1" 200 47095 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.42"
172.24.0.1 - - [12/Nov/2021:10:53:04 +0000] "GET /api/recipe/4/?share=None HTTP/1.1" 200 7996 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:04 +0000] "GET /static/assets/spinner.8299ad41bba0.svg HTTP/1.1" 200 8598 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.69"
172.24.0.1 - - [12/Nov/2021:10:53:05 +0000] "GET /media/recipes/828b57e3-eb78-41c4-9320-3b6e1c670f50_4.jpeg HTTP/1.1" 200 174044 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.111"
172.24.0.1 - - [12/Nov/2021:10:53:38 +0000] "GET /list/keyword/ HTTP/1.1" 200 17111 "https://recipes.deeppass.net/view/recipe/4" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:39 +0000] "GET /static/vue/css/model_list_view.b4ad098bddee.css HTTP/1.1" 200 333 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.175"
172.24.0.1 - - [12/Nov/2021:10:53:45 +0000] "GET /books/ HTTP/1.1" 200 16985 "https://recipes.deeppass.net/list/keyword/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.249"
172.24.0.1 - - [12/Nov/2021:10:53:45 +0000] "GET /static/vue/css/cookbook_view.ee3ad87acaeb.css HTTP/1.1" 200 428 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.249.152"
172.24.0.1 - - [12/Nov/2021:10:53:45 +0000] "GET /static/vue/js/cookbook_view.ce8e0ea82b56.js HTTP/1.1" 200 47583 "https://recipes.deeppass.net/books/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15" "108.162.250.159"
vabene1111 commented 2 years ago

The logs are a little hard to read on m phone right now, will look at them later but you say you renamed the containers, have you thought of also changing those names in the nginx config and the environment file?

vabene1111 commented 2 years ago

Ok so reviewed the logs now, they look fine, all migrations were run and there does not appear to be any startup error. After answering the question above can you turn on DEBUG=1 in your environment configuration file and post the application container logs of the moment you make the failing request ?

Can you also provide the browser console log output ?

inteadit commented 2 years ago

@vabene1111 - I know this won't be very helpful because i'm not posting logs but i'm seeing a very similar error to this. I have an installation that has been working for a year or two now that is currently on 0.16.7. I've been trying to update to the latest version using the normal docker-compose down/pull/up -d procedure and everything appears to work just fine. There are some issues, though - First I notice that none of my recipe books seem to exist in the new installation. When I go to add a new book to re-create one I get the same 'error creating a resource' message. I get a whole bunch of those errors when I go to create a new recipe as well. For now I keep reverting the entire VM back to my working 0.16.7 installation but not sure what I can do to correctly upgrade.

Some more context - I am running the website using the basic installation docker-compose file that exposes the web service on port 80. In a separate VM I have an NGINX installation that manages a few different services I am running, including Tandoor Recipes, and uses certbot to manage SSL certificates. I wonder would anything have changed in terms of what I need in the server block of the NGINX config with the update to 1.0? I am also not making any changes to the .ENV file - would anything change between versions that I need to reflect in the .ENV file?

I'll paste my config information if that helps (As far as I can tell this is as simple as it gets):

version: "3"
services:
  db_recipes:
    restart: always
    image: postgres:11-alpine
    volumes:
      - ./postgresql:/var/lib/postgresql/data
    env_file:
      - ./.env

  web_recipes:
    image: vabene1111/recipes
    restart: always
    env_file:
      - ./.env
    volumes:
      - staticfiles:/opt/recipes/staticfiles
      - nginx_config:/opt/recipes/nginx/conf.d
      - ./mediafiles:/opt/recipes/mediafiles
    depends_on:
      - db_recipes

  nginx_recipes:
    image: nginx:mainline-alpine
    restart: always
    ports:
      - 80:80
    env_file:
      - ./.env
    depends_on:
      - web_recipes
    volumes:
      - nginx_config:/etc/nginx/conf.d:ro
      - staticfiles:/static
      - ./mediafiles:/media

volumes:
  nginx_config:
  staticfiles:

And here is my .env file:

# only set this to true when testing/debugging
# when unset: 1 (true) - dont unset this, just for development
DEBUG=0

# hosts the application can run under e.g. recipes.mydomain.com,cooking.mydomain.com,...
ALLOWED_HOSTS=[Redacted hostname],192.168.xx.yy [Redacted internal IP]

# random secret key, use for example base64 /dev/urandom | head -c50 to generate one
SECRET_KEY=[Redacted]

# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
DB_ENGINE=django.db.backends.postgresql_psycopg2
POSTGRES_HOST=db_recipes
POSTGRES_PORT=5432
POSTGRES_USER=[Redacted]
POSTGRES_PASSWORD=[Redacted]
POSTGRES_DB=djangodb

# Users can set a amount of time after which the shopping list is refreshed when they are in viewing mode
# This is the minimum interval users can set. Setting this to low will allow users to refresh very frequently which
# might cause high load on the server. (Technically they can obviously refresh as often as they want with their own scripts)
SHOPPING_MIN_AUTOSYNC_INTERVAL=5

# If staticfiles are stored at a different location uncomment and change accordingly
# STATIC_URL=/static/

# If mediafiles are stored at a different location uncomment and change accordingly
MEDIA_URL=https://[Redacted]/media/

# Serve mediafiles directly using gunicorn. Basically everyone recommends not doing this. Please use any of the examples
# provided that include an additional nxginx container to handle media file serving.
# If you know what you are doing turn this back on (1) to serve media files using djangos serve() method.
# when unset: 1 (true) - this is temporary until an appropriate amount of time has passed for everyone to migrate
GUNICORN_MEDIA=0

# allow authentication via reverse proxy (e.g. authelia), leave of if you dont know what you are doing
# docs: https://github.com/vabene1111/recipes/tree/develop/docs/docker/nginx-proxy%20with%20proxy%20authentication
# when unset: 0 (false)
REVERSE_PROXY_AUTH=0

# the default value for the user preference 'comments' (enable/disable commenting system)
# when unset: 1 (true)
COMMENT_PREF_DEFAULT=1

And here is my NGINX website config in the separate reverse proxy VM:

server {

        server_name                     [Redacted];

        client_max_body_size            16M;

        location / {
                proxy_pass              http://192.168.xx.yy [redacted my internal IP just to be safe];
        }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/[Redacted]/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/[Redacted]/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}
server {
    if ($host = [Redacted]) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

        listen 80;

        server_name                     [Redacted];
    return 404; # managed by Certbot

Unfortunately, my current Tandoor VM is running the 0.16.7 working version for me, so I have no logs to paste with the errors.

vabene1111 commented 2 years ago

i am sorry but life is keeping me very very busy right now, i sadly cannot assist with setup issues atm. please close this issue if its resolved at any point otherwise i hope to get back to this in january

smilerz commented 2 years ago

@Odroid-Dude & @inteadit can you please try 1.0.3 and see if that addresses your issues? If not, please post container logs with DEBUG=1 enabled along with the browser console messages.

inteadit commented 2 years ago

@smilerz - Just tried 1.0.3 and no luck. Here are my container logs with debug=1 in ENV and right after trying to create a new recipe and getting the message, "There was an error fetching a resource!" - Will post the other container logs soon.

Updating database
Operations to perform:
  Apply all migrations: account, admin, auth, authtoken, contenttypes, cookbook, sessions, sites, socialaccount
Running migrations:
  No migrations to apply.
js-reverse file written to /opt/recipes/cookbook/static/django_js_reverse

1 static file copied to '/opt/recipes/staticfiles', 1018 unmodified, 1982 post-processed.
Done
[2021-12-19 21:06:47 +0000] [1] [INFO] Starting gunicorn 20.1.0
[2021-12-19 21:06:47 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1)
[2021-12-19 21:06:47 +0000] [1] [INFO] Using worker: sync
[2021-12-19 21:06:47 +0000] [11] [INFO] Booting worker with pid: 11
172.19.0.4 - - [19/Dec/2021:22:07:24 +0100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:24 +0100] "GET /search/ HTTP/1.0" 200 193594 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:24 +0100] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /search/ HTTP/1.0" 200 193594 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/themes/flatly.min.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/app.min.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/popper.min.js HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/bootstrap.min.js HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/select2.min.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/select2.min.js HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/select2-bootstrap.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/custom/js/form_multiselect.js HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/custom/js/form_multiselect.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/webfonts/fa-regular-400.woff2 HTTP/1.0" 200 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 200 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/assets/favicon.svg HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:25 +0100] "GET /static/assets/logo_color144.png HTTP/1.0" 200 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:27 +0100] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /new/recipe/ HTTP/1.0" 200 16961 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 304 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:29 +0100] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:30 +0100] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:31 +0100] "POST /new/recipe/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /edit/recipe/97/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /edit/recipe/internal/97/ HTTP/1.0" 200 16995 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/vue/css/chunk-vendors.css HTTP/1.0" 200 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/vue/css/edit_internal_recipe.css HTTP/1.0" 200 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/django_js_reverse/reverse.js HTTP/1.0" 200 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/vue/js/chunk-vendors.js HTTP/1.0" 200 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/vue/js/edit_internal_recipe.js HTTP/1.0" 200 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 304 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /static/assets/spinner.svg HTTP/1.0" 200 0 "https://recipes.xxx.com/static/css/app.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:32 +0100] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
172.19.0.4 - - [19/Dec/2021:22:07:34 +0100] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36
inteadit commented 2 years ago

@smilerz - Logs for the nginx container (The above is for the web container)

/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2021/12/19 21:06:36 [notice] 1#1: using the "epoll" event method
2021/12/19 21:06:36 [notice] 1#1: nginx/1.21.4
2021/12/19 21:06:36 [notice] 1#1: built by gcc 10.3.1 20210424 (Alpine 10.3.1_git20210424)
2021/12/19 21:06:36 [notice] 1#1: OS: Linux 5.4.0-91-generic
2021/12/19 21:06:36 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
2021/12/19 21:06:36 [notice] 1#1: start worker processes
2021/12/19 21:06:36 [notice] 1#1: start worker process 22
2021/12/19 21:06:36 [notice] 1#1: start worker process 23
192.168.50.51 - - [19/Dec/2021:21:07:24 +0000] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
2021/12/19 21:07:24 [warn] 22#22: *3 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 192.168.50.51, server: localhost, request: "GET /search/ HTTP/1.0", upstream: "http://172.19.0.3:8080/search/", host: "192.168.50.53"
192.168.50.51 - - [19/Dec/2021:21:07:24 +0000] "GET /search/ HTTP/1.0" 200 193594 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:24 +0000] "GET / HTTP/1.0" 302 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /search/ HTTP/1.0" 200 193594 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/themes/flatly.min.css HTTP/1.0" 200 184130 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/app.min.css HTTP/1.0" 200 40921 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 200 89476 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/popper.min.js HTTP/1.0" 200 21257 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.0" 200 60010 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/select2.min.css HTTP/1.0" 200 14966 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/select2.min.js HTTP/1.0" 200 70851 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/select2-bootstrap.css HTTP/1.0" 200 23192 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 200 23209 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 200 56842 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/custom/js/form_multiselect.js HTTP/1.0" 200 74 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/custom/js/form_multiselect.js HTTP/1.0" 304 0 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/webfonts/fa-regular-400.woff2 HTTP/1.0" 200 13584 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 200 75728 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/assets/favicon.svg HTTP/1.0" 200 5971 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:25 +0000] "GET /static/assets/logo_color144.png HTTP/1.0" 200 10055 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:27 +0000] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /new/recipe/ HTTP/1.0" 200 16961 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 304 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:29 +0000] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:30 +0000] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:31 +0000] "POST /new/recipe/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /edit/recipe/97/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /edit/recipe/internal/97/ HTTP/1.0" 200 16995 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/vue/css/chunk-vendors.css HTTP/1.0" 200 164445 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/vue/css/edit_internal_recipe.css HTTP/1.0" 200 112 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/django_js_reverse/reverse.js HTTP/1.0" 200 33251 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
2021/12/19 21:07:32 [warn] 22#22: *125 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 192.168.50.51, server: localhost, request: "GET /static/vue/js/chunk-vendors.js HTTP/1.0", upstream: "http://172.19.0.3:8080/static/vue/js/chunk-vendors.js", host: "192.168.50.53", referrer: "https://recipes.xxx.com/edit/recipe/internal/97/"
2021/12/19 21:07:32 [warn] 22#22: *127 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 192.168.50.51, server: localhost, request: "GET /static/vue/js/edit_internal_recipe.js HTTP/1.0", upstream: "http://172.19.0.3:8080/static/vue/js/edit_internal_recipe.js", host: "192.168.50.53", referrer: "https://recipes.xxx.com/edit/recipe/internal/97/"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/vue/js/edit_internal_recipe.js HTTP/1.0" 200 298106 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 304 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/vue/js/chunk-vendors.js HTTP/1.0" 200 1878905 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /static/assets/spinner.svg HTTP/1.0" 200 24712 "https://recipes.xxx.com/static/css/app.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:32 +0000] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/edit/recipe/internal/97/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:07:34 +0000] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:16 +0000] "GET /new/recipe/ HTTP/1.0" 200 16961 "https://recipes.xxx.com/search/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:16 +0000] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "POST /new/recipe/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /edit/recipe/98/ HTTP/1.0" 302 0 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /edit/recipe/internal/98/ HTTP/1.0" 200 16995 "https://recipes.xxx.com/new/recipe/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/themes/flatly.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/css/app.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/css/select2.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/css/select2-bootstrap.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/js/popper.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/themes/select2-bootstrap-theme.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/js/jquery-3.5.1.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/fontawesome/fontawesome_all.min.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/vue/css/chunk-vendors.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/vue/css/edit_internal_recipe.css HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/js/bootstrap.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/js/select2.min.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:17 +0000] "GET /static/django_js_reverse/reverse.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:18 +0000] "GET /static/vue/js/chunk-vendors.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:18 +0000] "GET /static/vue/js/edit_internal_recipe.js HTTP/1.0" 304 0 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:18 +0000] "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.0" 304 0 "https://recipes.xxx.com/static/fontawesome/fontawesome_all.min.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:18 +0000] "GET /manifest.json HTTP/1.0" 200 1117 "https://recipes.xxx.com/edit/recipe/internal/98/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:18 +0000] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
192.168.50.51 - - [19/Dec/2021:21:09:19 +0000] "GET /service-worker.js HTTP/1.0" 200 52842 "https://recipes.xxx.com/service-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36" "-"
inteadit commented 2 years ago

@smilerz - Lastly, my logs for the db container which is super short

2021-12-19 21:06:34.990 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2021-12-19 21:06:34.991 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2021-12-19 21:06:35.002 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2021-12-19 21:06:35.039 UTC [22] LOG:  database system was shut down at 2021-12-19 21:03:40 UTC
2021-12-19 21:06:35.049 UTC [1] LOG:  database system is ready to accept connections
inteadit commented 2 years ago

@smilerz - I see you also asked for 'Browser console messages' - Not sure exactly what that means but just in case this is helpful here is the html source for the webpage with the errors. Note - this webpage never loads, I just get the spinning logo with the utensils, chef's hat, pie, etc. indefinitely:

<html>
<head>
    <title>Edit Recipe</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <link rel="shortcut icon" type="image/x-icon" href="/static/assets/favicon.svg">
    <link rel="shortcut icon" href="/static/assets/favicon.svg">
    <link rel="icon" type="image/png" href="/static/assets/favicon-32x32.png" sizes="32x32">
    <link rel="icon" type="image/png" href="/static/assets/favicon-16x16.png" sizes="16x16">

    <link rel="mask-icon" href="/static/assets/safari-pinned-tab.svg" color="#161616">
    <link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" sizes="180x180">

    <link rel="manifest" href="/manifest.json">
    <meta name="msapplication-TileColor" content="#ffffff">
    <meta name="msapplication-TileImage" content="/mstile-144x144.png">

    <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#161616">
    <meta name="msapplication-TileColor" content="#161616">
    <meta name="theme-color" content="#ffffff">

    <!-- Bootstrap 4 -->
    <link id="id_main_css" href="/static/themes/flatly.min.css" rel="stylesheet">
    <link href="/static/css/app.min.css" rel="stylesheet">
    <script src="/static/js/jquery-3.5.1.min.js"></script>

    <script src="/static/js/popper.min.js"></script>
    <script src="/static/js/bootstrap.min.js"></script>

    <!-- Select2 for use with django autocomplete light -->
    <link href="/static/css/select2.min.css" rel="stylesheet"/>
    <script src="/static/js/select2.min.js"></script>

    <!-- Bootstrap theme for select2 -->
    <link rel="stylesheet" href="/static/css/select2-bootstrap.css"/>

    <link rel="stylesheet" href="/static/themes/select2-bootstrap-theme.css"/>

    <script type="text/javascript">
        $.fn.select2.defaults.set("theme", "bootstrap");
    </script>

    <!-- Fontawesome icons -->
    <link rel="stylesheet" href="/static/fontawesome/fontawesome_all.min.css">

</head>
<body>

<nav class="navbar navbar-expand-lg navbar-dark bg-primary bg-header" id="id_main_nav"
     style="position: sticky; top: 0; left: 0; z-index: 1000;">
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText"
            aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
        <span class="navbar-toggler-icon"></span>
    </button>

    <div class="collapse navbar-collapse" id="navbarText">
        <ul class="navbar-nav mr-auto">
            <li class="nav-item ">
                <a class="nav-link" href="/search/"><i
                        class="fas fa-book"></i> Cookbook</a>
            </li>
            <li class="nav-item ">
                <a class="nav-link" href="/plan/"><i
                        class="fas fa-calendar"></i> Meal-Plan</a>
            </li>
            <li class="nav-item ">
                <a class="nav-link" href="/list/shopping-list/"><i
                        class="fas fa-shopping-cart"></i> Shopping</a>
            </li>
            <li class="nav-item ">
                <a class="nav-link" href="/books/"><i
                        class="fas fa-book-open"></i> Books</a>
            </li>
        </ul>

        <ul class="navbar-nav ml-auto">

                <li class="nav-item dropdown ">
                    <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
                       aria-haspopup="true" aria-expanded="false">
                        <i class="fas fa-toolbox fa-lg"></i>
                    </a>
                    <div class="dropdown-menu dropdown-menu-center dropdown-menu-center-large">
                        <div class="row m-0">
                            <div class="col-4">
                                <a href="/list/keyword/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-tags fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Keyword
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/list/food/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-leaf fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Ingredients
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/list/unit/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-balance-scale fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Units
                                        </div>
                                    </div>
                                </a>
                            </div>
                        </div>
                        <div class="row m-0">
                            <div class="col-4">
                                <a href="/list/supermarket/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-store-alt fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Supermarket
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/list/supermarket-category/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-cubes fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Supermarket Category
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/list/automation/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-robot fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Automations
                                        </div>
                                    </div>
                                </a>
                            </div>
                        </div>
                        <div class="row m-0">
                            <div class="col-4">
                                <a href="/list/user-file/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-file fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Files
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/data/batch/edit" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-edit fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Batch Edit
                                        </div>
                                    </div>
                                </a>
                            </div>
                            <div class="col-4">
                                <a href="/history/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-history fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            History
                                        </div>
                                    </div>
                                </a>
                            </div>

                        </div>
                        <div class="row m-0">
                            <div class="col-4">
                                <a href="/export/" class="p-1">
                                    <div class="card p-0 no-gutters border-0">
                                        <div class="card-body text-center p-0 no-gutters">
                                            <i class="fas fa-file-export fa-2x"></i>
                                        </div>
                                        <div class="card-body text-break text-center p-0 no-gutters text-muted">
                                            Export
                                        </div>
                                    </div>
                                </a>
                            </div>
                        </div>
                    </div>
                </li>
                <li class="nav-item dropdown ">
                    <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
                       aria-haspopup="true" aria-expanded="false"><i
                            class="fas fa-plus fa-lg"></i>
                    </a>
                    <div class="dropdown-menu dropdown-menu-center"
                         aria-labelledby="navbarDropdownMenuLink">
                        <a class="dropdown-item" href="/data/import/url"><i
                                class="fas fa-file-import"></i> Import Recipe</a>
                        <a class="dropdown-item " href="/new/recipe/"><i
                                class="fas fa-plus"></i> Create</a>
                    </div>
                </li>
                <li class="nav-item dropdown ">
                    <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
                       aria-haspopup="true" aria-expanded="false"><i
                            class="fas fa-user-alt"></i> sean
                    </a>

                    <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
                        <a class="dropdown-item" href="/settings/"><i
                                class="fas fa-user-cog fa-fw"></i> Settings</a>
                        <a class="dropdown-item" href="/data/sync"><i
                                class="fas fa-sync-alt fa-fw"></i> External Recipes</a>

                            <a class="dropdown-item" href="/space/"><i
                                    class="fas fa-server fa-fw"></i> Space Settings</a>

                            <div class="dropdown-divider"></div>
                            <a class="dropdown-item" href="/system/"><i
                                    class="fas fa-server fa-fw"></i> System</a>
                            <a class="dropdown-item" href="/admin/"><i
                                    class="fas fa-user-shield fa-fw"></i> Admin</a>

                        <div class="dropdown-divider"></div>
                        <a class="dropdown-item" href="/docs/markdown/"><i
                                class="fab fa-markdown fa-fw"></i> Markdown Guide</a>
                        <a class="dropdown-item" href="https://github.com/vabene1111/recipes"><i
                                class="fab fa-github fa-fw"></i> GitHub</a>
                        <a class="dropdown-item" href="https://translate.tandoor.dev/projects/tandoor/"><i
                                class="fas fa-language fa-fw"></i> Translate Tandoor</a>
                        <a class="dropdown-item" href="/docs/api/"><i
                                class="fas fa-passport fa-fw"></i> API Documentation</a>
                        <a class="dropdown-item" href="/api/"><i
                                class="fas fa-file-code fa-fw"></i> API Browser</a>
                        <div class="dropdown-divider"></div>
                        <a class="dropdown-item" href="/accounts/logout/"><i
                                class="fas fa-sign-out-alt fa-fw"></i> Log out</a>
                    </div>
                </li>

        </ul>
    </div>
</nav>

<div class="container-fluid mt-2 mt-md-5 mt-xl-5 mt-lg-5" id="id_base_container">
    <div class="row">
        <div class="col-xl-2 d-none d-xl-block">

        </div>
        <div class="col-xl-8 col-12">

    <div id="app">
        <edit-internal-recipe></edit-internal-recipe>
    </div>

        </div>
        <div class="col-xl-2 d-none d-xl-block">

        </div>
    </div>

    <script id="user_preference" type="application/json">{"user": 1, "theme": "FLATLY", "nav_color": "PRIMARY", "default_unit": "oz", "default_page": "SEARCH", "search_style": "LARGE", "show_recent": true, "plan_share": [], "ingredient_decimals": 2, "comments": true}</script>

</div>

        <script src="/static/django_js_reverse/reverse.js"></script>

    <script type="application/javascript">

        window.CUSTOM_LOCALE = 'en'
        window.RECIPE_ID = 98
        window.DEFAULT_UNIT = 'oz'
        window.USER_PREF = {
            'use_kj':  false ,
        }

    </script>

    <link href="/static/vue/css/chunk-vendors.css" rel="stylesheet" />
<script src="/static/vue/js/chunk-vendors.js" ></script>
<link href="/static/vue/css/edit_internal_recipe.css" rel="stylesheet" />
<script src="/static/vue/js/edit_internal_recipe.js" ></script>

<script type="application/javascript">
    localStorage.setItem('SCRIPT_NAME', "")
    localStorage.setItem('BASE_PATH', "http://192.168.xx.yy [My internal ip, not the reverse proxied domain]")
    localStorage.setItem('STATIC_URL', "/static/")
    localStorage.setItem('DEBUG', "True")
    window.addEventListener("load", () => {
        if ("serviceWorker" in navigator) {
            navigator.serviceWorker.register("/service-worker.js", {scope: "http://192.168.xx.yy [My internal ip, not the reverse proxied domain]" + '/'}).then(function (reg) {

            }).catch(function (err) {
                console.warn('Error whilst registering service worker', err);
            });
        } else {
            console.warn('service worker not in navigator');
        }
    });
</script>

</body>
</html>
smilerz commented 2 years ago

@inteadit if you hit F12 in your browser you will open the DevTools. One of the screens will be a console.

What happens if you navigate to /edit/recipe/internal/97/ ?

inteadit commented 2 years ago

@smilerz Thank you for your help. I just re-upgraded and repeated my test of trying to create a new recipe and got the same error. I checked the logs and it was labelled recipe 96 this time, not 97, but I don't think that matters at all. After seeing the error I hit F12 and found the console - thanks for helping me get there. This is what I saw:

Mixed Content: The page at '<URL>' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint '<URL>'. This request has been blocked; the content must be served over HTTPS.
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/recipe/96/'. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/unit/?query='. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/food/?query='. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/keyword/?query='. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/user-file/?query='. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
chunk-vendors.124c48fd4079.js:254 Mixed Content: The page at 'https://recipes.xxx.com/edit/recipe/internal/96/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://192.168.xx.yy/api/recipe/?query=&page=1&page_size=25'. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ chunk-vendors.124c48fd4079.js:254
edit_internal_recipe.a18774e50976.js:1 Error: Network Error
    at e.exports (chunk-vendors.124c48fd4079.js:69)
    at XMLHttpRequest.v.onerror (chunk-vendors.124c48fd4079.js:254)
edit_internal_recipe.a18774e50976.js:1 Error: Network Error
    at e.exports (chunk-vendors.124c48fd4079.js:69)
    at XMLHttpRequest.v.onerror (chunk-vendors.124c48fd4079.js:254)
edit_internal_recipe.a18774e50976.js:1 Error: Network Error
    at e.exports (chunk-vendors.124c48fd4079.js:69)
    at XMLHttpRequest.v.onerror (chunk-vendors.124c48fd4079.js:254)
edit_internal_recipe.a18774e50976.js:1 Error: Network Error
    at e.exports (chunk-vendors.124c48fd4079.js:69)
    at XMLHttpRequest.v.onerror (chunk-vendors.124c48fd4079.js:254)
(index):349 Error whilst registering service worker DOMException: Failed to register a ServiceWorker: The origin of the provided scope ('http://192.168.xx.yy') does not match the current origin ('https://recipes.xxx.com').

I'm not expert but this is starting to look like a configuration error with my reverse proxy given the mixed content errors. I'm not good enough to figure out what I should be doing about it, though - any ideas? If you refer to my earlier post on this thread you can see that I have NGINX installed in an Ubuntu 20.04 VM (Not docker) and provided my config file for this website - it's very basic.

Thank you again for taking a look at this.

smilerz commented 2 years ago

What are you using for reverse proxy? This is the header that you need to make sure you are setting HTTP_X_FORWARDED_PROTO:https There are some other issues that have been resolved #959 #1080 that may help.

@vabene1111 we should probably add a section to the FAQ that lists the minimum required headers.

inteadit commented 2 years ago

@smilerz @vabene1111 - Yup, this fixed it, thank you very much Smilerz for pointing me in the right direction on the NGINX config. Looks like something changed between version 0.16 and 0.17 and now 1.0+ that requires my NGINX reverse proxy setup to need these headers set. I had been running Tandoor for a long time (I think version ~0.6, when it was still just called Recipes and Vabene1111 started showing it off on /r/selfhosted) - The whole time until now it was behind the NGINX reverse proxy without these headers set. I'm glad It's fixed and I'm on the latest version!

For others to reference here is my NGINX config file for this website - The two new lines are the 'proxy_set_header' lines:

server {

        server_name                     recipes.[redacted].com;

        client_max_body_size            16M;

        location / {
                proxy_set_header        X-Forwarded-Proto $scheme;
                proxy_set_header        Host $http_host;

                proxy_pass              http://192.168.xx.xx;
        }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/recipes.[redacted].com/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/recipes.[redacted].com/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}
server {
    if ($host = recipes.[redacted].com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

        listen 80;

        server_name                     recipes.[redacted].com;
    return 404; # managed by Certbot

}

Now i've really got to take some time and learn what these headers are for and figure out how to identify these issues myself. Every time I google it I quickly get lost - this is just a hobby for me and I rely on copying configs from others more often than not!

smilerz commented 2 years ago

@inteadit Glad it works now.

vabene1111 commented 2 years ago

awesome, glad you got it working. The growing complexity of the frontend forced us to use those headers to correctly determine the location of several resources thus the headers are now required.

leitwolf7 commented 1 year ago

I ran into this issue, too, but for a different reason: the nginx parameter "client_max_body_size" was not changed from the default of 1MB and I tried to import a 3MB file which I previously exported from another tandoor instance.

There is already a hint about this parameter in the section "jwilder's Nginx-proxy" (https://docs.tandoor.dev/install/docker/#jwilders-nginx-proxy), but I followed the section "Pure Nginx" and missed that. The documentation could be improved by adding a note about important parameter to the other nginx sections, too.

I added a comment here because I found this page when trying to find help for the error message. Maybe this helps others in the future.