• This project
    • Loading...
  • Sign in

오윤석 / maplespec.ga

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 4
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • oss-maple
  • app
  • nginx
  • nginx.conf
  • 오윤석's avatar
    svelte.js 설치 · 33fd0087
    33fd0087
    오윤석 authored 2020-05-19 23:19:11 +0900
nginx.conf 306 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
server {
        listen   80;
        server_name  localhost;
        access_log  /var/log/nginx/access.log.1;
        error_log /var/log/nginx/error.log.1;

        location /api {
                proxy_pass http://172.28.0.3;
        }

	location / {
		root /var/www/html/public;
		index index.html;
	}
}