Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
flowable-engine-fontend
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王万里
flowable-engine-fontend
Commits
a3c749a8
Commit
a3c749a8
authored
Feb 03, 2021
by
王万里
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 新增nginx配置
parent
d152b070
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
115 additions
and
0 deletions
+115
-0
nginx.conf
nginx-config/nginx.conf
+115
-0
No files found.
nginx-config/nginx.conf
0 → 100644
View file @
a3c749a8
#user nobody;
worker_processes
2
;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events
{
worker_connections
1024
;
}
http
{
include
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 logs/access.log main;
sendfile
on
;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout
65
;
# gzip on;
server
{
listen
8890
;
server_name
localhost
;
charset
koi8-r
;
# access_log logs/host.access.log main;
location
/
{
root
flowable-engine-fontend
;
index
index.html
index.htm
;
}
location
/idmweb/
{
proxy_pass
http://192.168.12.44:8080/flowable-ui/
;
}
location
/adminweb/
{
proxy_pass
http://192.168.12.44:8080/flowable-ui/
;
}
location
/taskweb/
{
proxy_pass
http://192.168.12.44:8080/flowable-ui/
;
}
location
/modelerweb/
{
proxy_pass
http://192.168.12.44:8080/flowable-ui/
;
}
location
/CityInterface/
{
proxy_pass
http://localhost:8089
;
}
# 想要被代理的接口地址:
# http://192.168.12.148:8890/idmfrontend/app/authentication
# 目标接口地址:
# http://192.168.12.148:8080/flowable-ui/app/authentication
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
# 表单设计器
server
{
listen
8891
;
server_name
localhost
;
location
/
{
root
form-render
;
index
index.html
index.htm
;
}
# location /CityInterface/ {
# proxy_pass http://192.168.12.44:8055;
# }
}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment