This commit is contained in:
relaxed 2024-08-25 12:07:03 +05:00
commit b8e463b000
31 changed files with 2230 additions and 0 deletions

3
docker_dev/Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM nginx:mainline-alpine
EXPOSE 80
COPY nginx.conf /etc/nginx/nginx.conf

33
docker_dev/nginx.conf Normal file
View file

@ -0,0 +1,33 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
gzip on;
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;
server {
listen 0.0.0.0:80;
resolver 77.88.8.8 77.88.8.1 1.1.1.1 1.0.0.1 8.8.8.8 8.8.4.4;
server_name localhost;
location /schedule {
proxy_pass https://www.usue.ru/$request_uri;
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
}
}
}