1 Star 0 Fork 0

蘑菇头老大/jenkins-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
gaowei 提交于 2019-06-14 10:29 . 加入自动化部署文件
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '{ "@timestamp": "$time_iso8601", '
'"remote_addr": "$remote_addr", '
'"remote_user": "$remote_user", '
'"body_bytes_sent": "$body_bytes_sent", '
'"request_time": "$request_time", '
'"status": "$status", '
'"host": "$host", '
'"server_addr": "$server_addr",'
'"request": "$request", '
'"request_method": "$request_method", '
'"uri": "$uri", '
'"http_referrer": "$http_referer", '
'"http_x_forwarded_for": "$http_x_forwarded_for", '
'"http_user_agent": "$http_user_agent", '
'"upstreampstatus": "$upstream_status",'
'"upstreamaddr": "$upstream_addr",'
'"upstreamresponsetime": "$upstream_response_time",'
'"document_root": "$document_root"'
'}';
access_log logs/access.log main;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
listen 80;
server_name localhost;
index index.html index.htm;
root /usr/local/openresty/nginx/html;
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mmbluex/jenkins-vue.git
[email protected]:mmbluex/jenkins-vue.git
mmbluex
jenkins-vue
jenkins-vue
master

搜索帮助