You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
User:Razzi/working with apache atlas in docker: Difference between revisions
Jump to navigation
Jump to search
imported>Razzi (Created page with "Found a new project https://github.com/sburn/docker-apache-atlas let's try it nah it's using 2.1") |
imported>Razzi No edit summary |
||
Line 2: | Line 2: | ||
nah it's using 2.1 | nah it's using 2.1 | ||
Ok back to the original | |||
want to set up nginx | |||
configuring it isn't working: <syntaxhighlight lang="text"> | |||
razzi@data-catalog-evaluation:~/apache-atlas-docker$ cat ../nginx-config/nginx.conf | |||
include /etc/nginx/conf.d/*.conf; | |||
upstream atlas-server { | |||
server atlas-server:21000; | |||
} | |||
server { | |||
listen 80; | |||
server_name *; | |||
location / { | |||
proxy_pass http://atlas-server; | |||
} | |||
} | |||
</syntaxhighlight><syntaxhighlight lang="text"> | |||
docker compose logs nginx | |||
apache-atlas-docker-nginx-1 | nginx: [emerg] "server" directive is not allowed here in /etc/nginx/nginx.conf:5 | |||
</syntaxhighlight> |
Latest revision as of 22:04, 21 December 2021
Found a new project https://github.com/sburn/docker-apache-atlas let's try it
nah it's using 2.1
Ok back to the original
want to set up nginx
configuring it isn't working:
razzi@data-catalog-evaluation:~/apache-atlas-docker$ cat ../nginx-config/nginx.conf
include /etc/nginx/conf.d/*.conf;
upstream atlas-server {
server atlas-server:21000;
}
server {
listen 80;
server_name *;
location / {
proxy_pass http://atlas-server;
}
}
docker compose logs nginx
apache-atlas-docker-nginx-1 | nginx: [emerg] "server" directive is not allowed here in /etc/nginx/nginx.conf:5