Skip to content

Commit 947f843

Browse files
committed
Launch web app with NginX
1 parent 64693d0 commit 947f843

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

nginx-webapp/Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM nginx:1.18
2+
LABEL maintainer="Song Junwoo <[email protected]>"
3+
4+
COPY ./nginx.conf /etc/nginx/
5+
COPY ./default.conf /etc/nginx/conf.d/
6+
7+
WORKDIR /app
8+
9+
CMD ["gowebapp" "--port", "1323"]
10+
11+
EXPOSE 80

nginx-webapp/default.conf

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
upstream localhost {
2+
server localhost:1323;
3+
keepalive 100;
4+
}
5+
6+
server {
7+
listen 80;
8+
listen [::]:80;
9+
server_name localhost;
10+
11+
charset utf-8;
12+
#charset koi8-r;
13+
#access_log /var/log/nginx/host.access.log main;
14+
15+
location / {
16+
proxy_pass http://localhost;
17+
}
18+
19+
#error_page 404 /404.html;
20+
21+
# redirect server error pages to the static page /50x.html
22+
#
23+
#error_page 500 502 503 504 /50x.html;
24+
#location = /50x.html {
25+
# root /usr/share/nginx/html;
26+
#}
27+
28+
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
29+
#
30+
#location ~ \.php$ {
31+
# proxy_pass http://127.0.0.1;
32+
#}
33+
34+
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
35+
#
36+
#location ~ \.php$ {
37+
# root html;
38+
# fastcgi_pass 127.0.0.1:9000;
39+
# fastcgi_index index.php;
40+
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
41+
# include fastcgi_params;
42+
#}
43+
44+
# deny access to .htaccess files, if Apache's document root
45+
# concurs with nginx's one
46+
#
47+
#location ~ /\.ht {
48+
# deny all;
49+
#}
50+
}
51+

nginx-webapp/nginx.conf

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
user nginx;
3+
worker_processes auto;
4+
5+
error_log /var/log/nginx/error.log warn;
6+
pid /var/run/nginx.pid;
7+
8+
9+
events {
10+
worker_connections 1024;
11+
}
12+
13+
14+
http {
15+
charset utf-8;
16+
include /etc/nginx/mime.types;
17+
default_type application/octet-stream;
18+
19+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
20+
'$status $body_bytes_sent "$http_referer" '
21+
'"$http_user_agent" "$http_x_forwarded_for"';
22+
23+
access_log /var/log/nginx/access.log main;
24+
25+
sendfile on;
26+
#tcp_nopush on;
27+
28+
keepalive_timeout 65;
29+
30+
#gzip on;
31+
32+
include /etc/nginx/conf.d/*.conf;
33+
}

0 commit comments

Comments
 (0)