Добрый день
помогите пож-ста с вопросом по nginx в котором я полный ноль.
Пытаюсь через docker задеплоить nginx чтобы потом использовать его для загрузки файлов но почему то не работает.
DockerfileFROM nginx
COPY static-html-directory /usr/share/nginx/html
COPY static-html-directory/oam /usr/share/nginx/oam
COPY nginx.conf /usr/share/nginx/nginx.conf
nginx.confworker_processes 1;
error_log /var/log/nginx/error.log debug;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
server {
listen 80;
server_name 0.0.0.0;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /oam {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
}
после выполнения деплоя
docker build -t some-content-nginx .
docker run -p 80:80 some-content-nginx
Выполняю
curl -X POST
myhostip/oam
и получаю
301 Moved Permanently