所有项目提交

This commit is contained in:
2025-04-15 15:54:58 +08:00
commit 640eb204d9
466 changed files with 26779 additions and 0 deletions

View File

@@ -0,0 +1,254 @@
.aboutUs{
width: 100%;
height: 88vh;
/* background: palegoldenrod; */
position: relative;
}
.aboutUs .container{
width: 100%;
height: 83%;
/* background: palevioletred; */
background-image: url(../imgs/关于我们图.jpg);
background-size:100% auto;
background-position: 100% 100%;
background-repeat: no-repeat;
}
.aboutUs-content{
width:20vw;
height: 20vh;
/* background: palevioletred; */
position: absolute;
bottom: 6vh;
left: 15vw;
display: flex;
}
.aboutUs-content-img{
width: 43%;
}
.with-border{
padding: 3px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
overflow: hidden;
}
.with-border img{
width: 100%;
height:auto;
}
.exaboutUs-content-tt{
/* background: palevioletred; */
width: 48%;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}
.exaboutUs-content-tt p:nth-of-type(1){
font-size: 1.3vw;
font-weight: 600;
color: rgba(0,0,0,0.7);
text-align: left;
width: 80%;
}
.exaboutUs-content-tt p:nth-of-type(2){
font-size: 0.8vw;
font-weight: 600;
color: rgba(0,0,0,0.3);
text-align: left;
width: 80%;
}
.textBox{
width: 19vw;
height: 30vh;
position: absolute;
top: 5vh;
left: 8vw;
}
.textBox-title{
margin-top: 1vh;
}
.textBox-title p{
line-height: 30px;
color: rgba(0,0,0,0.7);
}
.textBox-title p:nth-of-type(1){
font-size: 0.9vw;
}
.textBox-title p:nth-of-type(2){
font-size: 0.75vw;
margin-top: 0.5vh;
}
.staffBox{
width: 100%;
height: 45vh;
display: flex;
justify-content: center;
align-items: start;
}
.staffBox-left,.staffBox-right{
width: 13vw;
height: 68%;
box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.2);
border-radius: 15px;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.top, .bottom{
width: 100%;
height: 50%;
display: flex;
}
.top div{
width: 50%;
height:100%;
text-align: right;
}
.top-title{
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: end;
}
.top-title p:nth-of-type(1){
font-size: 1vw;
color: rgba(0,0,0,0.7);
text-align: right;
width: 80%;
padding-right: 0.4vw;
}
.top-title p:nth-of-type(2){
font-size: 2vw;
color: rgba(0,0,0,0.3);
text-align: right;
font-weight: 600;
width: 80%;
}
.top-img {
text-align: center !important;
padding-top: 4vh;
}
.top-img img{
width: 55%;
height: auto;
}
.bottom-title{
width: 50%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bottom-title p{
width: 100%;
height:auto;
display: flex;
justify-content: left;
align-items: center;
margin-top: 0.5vh;
padding-left: 1vw;
}
.colorBlock{
display: inline-block;
width: 0.8vw;
height: 1.1vh;
background: #29C2EB;
border-radius: 3px;
margin-right: 0.5vw;
}
.colorBlock2{
display: inline-block;
width: 0.8vw;
height: 1.1vh;
border-radius: 3px;
margin-right: 0.5vw;
background: #1F589B;
}
.colorBlock3{
display: inline-block;
width: 0.8vw;
height: 1.1vh;
border-radius: 3px;
margin-right: 0.5vw;
background: #0C3660;
}
.colorBlock4{
display: inline-block;
width: 0.8vw;
height: 1.1vh;
border-radius: 3px;
margin-right: 0.5vw;
background: #B160A2;
}
.colorBlock5{
display: inline-block;
width: 0.8vw;
height: 1.1vh;
border-radius: 3px;
margin-right: 0.5vw;
background: #601A56;
}
.Block2 , .Block3{
font-size: 0.7vw;
color: rgba(0,0,0,0.7);
margin-right: 0.5vw;
}
.bottom-img{
width: 50%;
height: 100%;
text-align: center;
/* padding-top: 2vh; */
}
.bottom-img img{
width: 80%;
height: auto;
}
/* .staffBox-left{
width: 12vw;
height: 70%;
box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.2);
border-radius: 15px;
} */
.staffBox-right{
margin-left: 8vw;
}

View File

@@ -0,0 +1,75 @@
/* 所有标签的内外边距清零 */
* {
margin: 0px;
padding: 0px;
/* css3盒子模型 */
box-sizing: border-box;
font-family:DFKai-SB;
}
/* em 和 i 斜体的文字不倾斜 */
em,
i {
font-style: normal
}
html,body{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 去掉li 的小圆点 */
/* li {
list-style: none
} */
/* ul{
list-style: none;
} */
img {
/* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
border: 0;
/* 取消图片底侧有空白缝隙的问题 */
vertical-align: middle;
}
button {
/* 当我们鼠标经过button 按钮的时候,鼠标变成小手 */
cursor: pointer
}
a {
color: #666;
text-decoration: none
}
a:hover {
color: #c81623
}
button,
input {
/* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
/* 默认有灰色边框我们需要手动去掉 */
}
body {
/* CSS3 抗锯齿形 让文字显示的更加清晰 */
-webkit-font-smoothing: antialiased;
/* background-color: #fff; */
/* font: 12px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif; */
/* color: #666 */
}
.hide,
.none {
display: none
}
/* 清除浮动 */
.clearfix::after {
visibility: hidden;
clear: both;
display: block;
content: ".";
height: 0
}

View File

@@ -0,0 +1,227 @@
.aboutUs{
width: 100%;
height: 88vh;
/* background: palegoldenrod; */
position: relative;
}
.aboutUs .container{
width: 100%;
height: 83%;
/* background: palevioletred; */
background-image: url(../imgs/联系我们背景图.png);
background-size:100% 100%;
background-position: 100% 100%;
background-repeat: no-repeat;
}
.aboutUs-content{
width:20vw;
height: 20vh;
/* background: palevioletred; */
position: absolute;
bottom: 6vh;
left: 15vw;
display: flex;
}
.aboutUs-content-img{
width: 43%;
}
.with-border{
padding: 3px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
overflow: hidden;
}
.with-border img{
width: 100%;
height:auto;
}
.exaboutUs-content-tt{
/* background: palevioletred; */
width: 48%;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}
.exaboutUs-content-tt p:nth-of-type(1){
font-size: 1.3vw;
font-weight: 600;
color: rgba(0,0,0,0.7);
text-align: left;
width: 80%;
}
.exaboutUs-content-tt p:nth-of-type(2){
font-size: 0.8vw;
font-weight: 600;
color: rgba(0,0,0,0.3);
text-align: left;
width: 80%;
}
.textBox{
width: 20vw;
height: 50vh;
position: absolute;
top: 18vh;
left: 40vw;
text-align: center;
}
.gifBox{
width: 100%;
text-align: center;
}
.gifBox img{
width: 70%;
height: 100%;
}
.textBox-title{
margin-top: 1vh;
}
.textBox-title p{
text-align: center;
line-height: 30px;
color: rgba(255,255,255,0.9);
font-size: 0.9vw;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
.textBox-title p:nth-of-type(1){
font-size: 1.3vw;
font-weight: 600;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
.textBox-title p:nth-of-type(2){
font-size: 0.9vw;
margin-top: 1.8vh;
}
/* 地址 */
.addressBox{
width: 100%;
height:70vh;
}
.addressBox-top{
width: 40%;
height: 10vh;
padding-bottom: 3vh;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.emailBox{
width: 8vw;
/* background: olive; */
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding-top: 3vh;
}
.emailBox img{
width: 23%;
height: auto;
margin-bottom: 1vh;
}
.emailBox a{
font-size: 0.7vw;
color: rgba(0,0,0,0.7);
margin-top: 8px;
}
a:hover{
color: #2AC2EC;
}
.positioningBox{
width: 22vw;
height: 100%;
/* background: olive; */
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.positioningBox img{
width:auto;
height: 8vh;
}
.positioningBox p{
font-size: 0.8vw;
color: rgba(0,0,0,0.7);
margin-top: 8px;
}
.addressBox-bottom{
width: 40%;
height: 50vh;
margin: 0 auto;
position: relative;
margin-top: 3vh;
}
#mapContainer {
width: 100%;
height: 100%;
min-height: 300px; /* 确保地图有最小高度 */
}
/* 自定义信息窗体样式 */
.amap-info-content {
padding: 10px;
border-radius: 8px;
font-family: DFKai-SB;
}
.info-title {
font-size: 16px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.info-address {
font-size: 14px;
color: #666;
line-height: 1.5;
}

View File

@@ -0,0 +1,75 @@
.footer{
width: 100%;
height: 25vh;
background-image: url(../imgs/背景底.jpg);
/* background-size: cover; */
background-position: 5% 0%;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.footer-content{
width: 85%;
height: 100%;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
.footer-left{
width: 30%;
height: 60%;
display: flex;
align-items: end;
justify-content: space-between;
/* background: palegoldenrod; */
}
.footer-left img{
width: 5vw;
height:auto;
}
.footer-right{
width: 70%;
height: 100%;
/* background: palevioletred; */
display: flex;
align-items: end;
justify-content: right;
color: rgba(255, 255, 255, 0.6);
padding-bottom: 20px;
font-size: 0.6vw;
}
.footer-left-content{
height: 100%;
color: white;
font-size: 0.7vw;
display: flex;
flex-direction: column;
/* align-items: end; */
justify-content: end;
}
.YXemail{
color: white;
font-size: 0.7vw;
}
.YXemail:hover{
color: #007bff;
}
.footer-left p{
margin-top: 8px;
}
.record{
color: rgba(255, 255, 255, 0.6);
}
.record:hover{
color: #007bff;
}

View File

@@ -0,0 +1,51 @@
.header{
width: 100%;
height: 11vh;
background-color: #fff;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header .container{
width: 65%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 25%;
height: 100%;
display: flex;
align-items: center;
justify-content: right;
}
.logo img{
width: 3vw;
height: auto;
}
.header ul{
width: 50%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
/* background: palevioletred; */
margin-left: 5vw;
}
.header ul li{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9vw;
}
.header ul li a{
color: rgba(0, 0, 0, 0.8);
transition: all 0.2s ease;
}
.header ul li a:hover{
font-size: 1vw;
color: rgba(0, 0, 0, 1);
text-shadow: 0 0 10px rgba(41, 111, 216, 0.5);
}

View File

@@ -0,0 +1,237 @@
.banner{
width: 100%;
color: rgba(255, 255, 255, 1);
position: relative;
padding-bottom: 170px;
}
.container{
width: 100%;
height: 83vh;
background-image: url(../imgs/首页.jpg);
background-size: cover;
background-position: center;
color: rgba(255, 255, 255, 1);
}
.content{
width:60%;
height: 75%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.content .title{
text-align: center;
padding-right: 4%;
}
.content .title h1{
font-size: 4.5vw;
font-weight: 600;
letter-spacing: 3px;
margin-top: 22%;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.content .title p{
font-size: 2.5vw;
font-weight: 400;
font-weight: 600;
color: rgba(255, 255, 255, 0.4);
text-align: right;
padding-right: 5vw;
letter-spacing: 10px;
}
.content .text{
width: 51%;
font-size: 0.86vw;
font-weight: 400;
text-align: left;
margin-left: 24%;
line-height: 35px;
text-indent: 2em;
letter-spacing: 2px;
}
.content .list{
position: absolute;
bottom: 0;
left: 24%;
width: 50%;
height:300px;
}
.content .list ul{
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
justify-content: space-around;
color: #000;
/* align-items: center; */
}
.content .list ul li{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
ul li .roundImg{
width: clamp(150px, 9vw, 400px); /* 最小200px最大400px默认20vw */
height: auto;
list-style: none;
border-radius: 50%;
overflow: hidden;
text-align: center;
padding: 5px;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
cursor: pointer;
}
ul li .roundImg:hover{
width: clamp(150px, 10vw, 400px);
box-shadow: 0 0 20px rgba(63, 53, 206, 0.5);
}
ul li .roundImg img{
width: 100%;
height: auto;
object-fit: cover;
border-radius: 50%; /* 如果是圆形图片 */
}
ul li .textImg{
width: 100%;
margin-left: 0px;
padding-left: 0px;
margin-top: 18px;
text-align: center;
cursor: pointer;
}
ul li .imgTitle{
font-size: 23px;
font-weight: 600;
color: rgba(0, 0, 0, 0.8);
}
ul li .imgTitleEN{
font-size: 16px;
color: #A8A8A8;
}
.we{
width: 100%;
height: 50vh;
/* background-color: palegoldenrod; */
}
.weList{
width: 40%;
height: 100%;
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 0 auto;
/* background: paleturquoise; */
box-sizing: border-box;
}
.weList li{
list-style: none;
width: 12vw;
/* height: 100%; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
cursor: pointer;
/* background: peachpuff; */
}
.weList li img{
/* width: 100%; */
object-fit: cover; /* 保持图片比例填充 */
display: block; /* 避免图片底部间隙 */
}
.core{
position: absolute;
top: 21.5vh;
left: 17%;
}
.core2{
position: absolute;
top: 21.5vh;
left: 22%;
}
.core3{
position: absolute;
top: 21.5vh;
left: 24%;
}
ul .weList1 img{
width: auto;
height: 35vh;
/* background-image: url(../imgs/核心技术.png);
background-size: 12vw auto;
background-position: 0.5vw 1.4vw;
background-repeat: no-repeat; */
}
ul .weList2 img{
width: auto;
height: 35vh;
/* background-image: url(../imgs/技术团队.png);
background-size:10.2vw auto;
background-position: 0.8vw 2vw;
background-repeat: no-repeat; */
}
ul .weList3 img{
width: auto;
height: 35vh;
/* background-image: url(../imgs/技术支持.png);
background-size: 10.95vw auto;
background-position: 0.5vw 0vw;
background-repeat: no-repeat; */
}
.weListTitle{
/* margin-top: 7vh; */
font-size: 0.8vw;
font-weight: bold;
color: rgba(0, 0, 0, 0.7);
margin-bottom: 0.6vw;
/* background: palegreen; */
height: 11vh;
display: flex;
flex-direction: column;
justify-content: end;
text-align: center;
}
.weListText{
font-size: 0.6vw;
font-weight: 400;
color: rgba(0, 0, 0, 0.6);
padding-bottom: 1vh;
text-align: center;
}

View File

@@ -0,0 +1,326 @@
.aboutUs{
width: 100%;
height: 88vh;
/* background: palegoldenrod; */
position: relative;
}
/* .aboutUs .container{
width: 100%;
height: 83%;
} */
.CarouselBox{
width: 100%;
height: 80%;
margin: 0 auto;
overflow: hidden;
position: relative;
}
/* 轮播图容器 */
.carousel-container {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
padding: 0;
}
.carousel-list {
display: flex;
width: 100%;
height: 100%;
transition: transform 0.5s ease;
}
.carousel-item {
flex: 0 0 100%;
width: 100%;
height: 100%;
}
/* 优化图片渲染 */
.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
user-select: none;
/* 添加这些属性以提升性能 */
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
}
/* 优化箭头按钮样式 */
.carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: white;
font-size: 20px;
z-index: 10;
transition: all 0.3s ease;
}
.carousel-arrow:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* 添加触摸设备支持 */
@media (hover: none) {
.carousel-arrow {
display: none; /* 在触摸设备上隐藏箭头 */
}
}
.carousel-arrow-left {
left: 2vw;
top: 48.7%;
}
.carousel-arrow-right {
right: 2vw;
}
/* 修正指示器容器样式 */
.carousel-indicators {
position: absolute;
bottom: 5vh;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 10;
}
/* 修正指示器小圆点样式 */
.indicator {
width: 8px; /* 稍微调小一点 */
height: 8px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
}
/* 补充激活状态的指示器样式 */
.indicator.active {
background-color: #fff; /* 高亮为纯白色 */
transform: scale(1.2); /* 稍微放大 */
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* 添加发光效果 */
}
/* 修正容器结构相关样式 */
.carousel-container {
width: 100%;
height: 100%;
position: relative; /* 确保是相对定位 */
overflow: hidden;
padding: 0;
}
/* 悬停效果 */
.indicator:hover {
background-color: rgba(255, 255, 255, 0.8);
transform: scale(1.1);
}
.aboutUs-content{
width:20vw;
height: 20vh;
/* background: palevioletred; */
position: absolute;
bottom: 6vh;
left: 15vw;
display: flex;
}
.aboutUs-content-img{
width: 43%;
}
.with-border{
padding: 3px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
overflow: hidden;
}
.with-border img{
width: 100%;
height:auto;
}
.exaboutUs-content-tt{
/* background: palevioletred; */
width: 48%;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}
.exaboutUs-content-tt p{
margin-left: 1vw;
}
.exaboutUs-content-tt p:nth-of-type(1){
font-size: 1.3vw;
font-weight: 600;
color: rgba(0,0,0,0.7);
text-align: left;
width: 100%;
}
.exaboutUs-content-tt p:nth-of-type(2){
font-size: 0.8vw;
font-weight: 600;
color: rgba(0,0,0,0.3);
text-align: left;
width: 100%;
}
.textBox{
width: 19vw;
height: 30vh;
position: absolute;
top: 5vh;
left: 8vw;
}
.textBox-title{
margin-top: 1vh;
}
.textBox-title p{
line-height: 30px;
color: rgba(0,0,0,0.7);
}
.textBox-title p:nth-of-type(1){
font-size: 0.9vw;
}
.textBox-title p:nth-of-type(2){
font-size: 0.75vw;
margin-top: 0.5vh;
}
/* -------------------------- */
.productIntroduction{
width: 100%;
/* background: palegoldenrod; */
}
.productIntroduction .top{
width: 70%;
height: 62vh;
margin: 0 auto;
display: flex;
justify-content: space-between;
padding-top: 5vh;
}
.productIntroduction .top .top-left,.top-right{
width: 50%;
height: 100%;
}
.productIntroduction .top-left img{
width: 80%;
height: auto;
}
.text-box{
margin-top: 3vh;
padding-left: 0.5vw;
width: 100%;
text-align: left;
}
.text-box p{
margin-top: 1vh;
}
.text-box p:nth-of-type(1){
font-size: 0.9vw;
font-weight: 600;
color: rgba(0,0,0,0.7);
}
.productIntroduction .top-right {
text-align: right;
}
.text-right{
padding-left: 7vw;
}
.productIntroduction .top-right img{
width: 82%;
height: auto;
}
.top2Box{
width: 100%;
background: #E9F1F3;
padding-top: 5vh;
}
.top2Box .top{
height: 53vh !important;
}
.productIntroduction .bottom{
width: 100%;
height: 55vh;
margin: 0 auto;
text-align: center;
background: #E9F1F3;
}
.bottom-left{
text-align: left;
width: 32%;
margin: 0 auto;
}
.bottom-left img{
width: 90%;
}

View File

@@ -0,0 +1,176 @@
.aboutUs{
width: 100%;
height: 100vh;
/* background: palegoldenrod; */
position: relative;
}
.aboutUs .container{
width: 100%;
height: 73%;
/* background: palevioletred; */
background-image: url(../imgs/解决方案背景图.png);
background-size:100% 100%;
background-position: 100% 100%;
background-repeat: no-repeat;
}
.aboutUs-content{
width:30vw;
height: 25vh;
/* background: palevioletred; */
position: absolute;
bottom: 15vh;
left: 15vw;
display: flex;
}
.aboutUs-content-img{
width: 30%;
}
.with-border{
padding: 3px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
overflow: hidden;
}
.with-border img{
width: 100%;
height:auto;
}
.exaboutUs-content-tt{
/* background: palevioletred; */
width: 20vw;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}
.exaboutUs-content-tt p:nth-of-type(1){
font-size: 1.3vw;
font-weight: 600;
color: rgba(0,0,0,0.7);
text-align: left;
width: 80%;
}
.exaboutUs-content-tt p:nth-of-type(2){
font-size: 0.8vw;
font-weight: 600;
color: rgba(0,0,0,0.3);
text-align: left;
width: 80%;
}
.exaboutUs-content-tt p:nth-of-type(3){
font-size: 0.8vw;
/* font-weight: 600; */
color: rgba(0,0,0,0.8);
text-align: left;
width: 80%;
margin-top: 8px;
}
/* ---------------- */
.CarouselBox{
width: 40vw;
height: 45vh;
margin: 0 auto;
overflow: hidden;
position: absolute;
top: 8vh;
left: 5vw;
padding-bottom: 2vh;
object-fit: cover;
}
/* 轮播图容器 */
.carousel-container {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
padding: 0;
object-fit: cover;
}
.carousel-list {
display: flex;
width: 100%;
height: 100%;
transition: transform 0.5s ease;
}
.carousel-item {
flex: 0 0 100%;
width: 100%;
height: 100%;
}
/* 优化图片渲染 */
.carousel-item img {
width: 100%;
height: 100%;
object-fit: contain; /* 改为contain确保图片完整显示 */
user-select: none;
/* 添加这些属性以提升性能 */
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
}
/* 修正指示器容器样式 */
.carousel-indicators {
position: absolute;
bottom: 2vh;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 100;
}
/* 修正指示器小圆点样式 */
.indicator {
width: 8px; /* 稍微调小一点 */
height: 8px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.8);
cursor: pointer;
transition: all 0.3s ease;
}
/* 补充激活状态的指示器样式 */
.indicator.active {
background-color: #fff; /* 高亮为纯白色 */
transform: scale(1.2); /* 稍微放大 */
box-shadow: 0 0 10px rgba(255, 255, 255, 0.9); /* 添加发光效果 */
}
/* 修正容器结构相关样式 */
.carousel-container {
width: 100%;
height: 100%;
position: relative; /* 确保是相对定位 */
overflow: hidden;
padding: 0;
}
/* 悬停效果 */
.indicator:hover {
background-color: rgba(255, 255, 255, 0.8);
transform: scale(1.1);
}

View File

@@ -0,0 +1,135 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/aboutUs.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="../imgs/SVG/LOGO黑色字.svg" alt="logo">
</div>
<ul>
<li> <a href="../index.html"> 首页</a></li>
<li> <a href="aboutUs.html" style="color: #2AC2EC;"> 关于我们</a></li>
<li> <a href="productIntroduction.html"> 产品介绍</a></li>
<li> <a href="solution.html"> 解决方案</a></li>
<li> <a href="contactUs.html"> 联系我们</a></li>
</ul>
</div>
</header>
<section class="aboutUs">
<div class="container"></div>
<div class="aboutUs-content">
<div class="aboutUs-content-img">
<div class="with-border">
<img src="../imgs/我们的团队.png" alt="">
</div>
</div>
<div class="exaboutUs-content-tt">
<p>
我们的团队
</p>
<p>Our team</p>
</div>
</div>
<div class="textBox">
<div class="textBox-title">
<p>
扶摇万里,乘风致远
</p>
<p>深圳市驭鑫科技有限公司成立于2021年1月。目前公司主营业务有:销售代理,芯片进出口,云计算服务器设备研发生产销售。</p>
</div>
<div class="textBox-title">
<p>
公司发展目标
</p>
<p>成为行业领先的芯片代理商,聚焦芯片代理服务、芯片进出口服务、云计算服务器设备研发、生成、销售,并形成有持续盈利能力的产品线。</p>
</div>
</div>
</section>
<section class="staffBox">
<div class="staffBox-left">
<div class="top">
<div class="top-title">
<p>人员结构</p>
<p>12人</p>
</div>
<div class="top-img">
<img src="../imgs/SVG/人员结构.svg" alt="人员结构">
</div>
</div>
<div class="bottom">
<div class="bottom-title">
<p><span class="colorBlock"></span> <span class="Block2">CEO</span> <span class="Block3">1名</span></p>
<p><span class="colorBlock2"></span> <span class="Block2">CFO</span> <span class="Block3">1名</span></p>
<p><span class="colorBlock3"></span> <span class="Block2">研发</span> <span class="Block3">10名</span></p>
</div>
<div class="bottom-img">
<img src="../imgs/SVG/人员结构饼图.svg" alt="人员结构">
</div>
</div>
</div>
<div class="staffBox-right">
<div class="top">
<div class="top-title" style="justify-content: center;align-items: end;">
<p>员工学历</p>
</div>
<div class="top-img">
<img src="../imgs/SVG/员工学历.svg" alt="员工学历">
</div>
</div>
<div class="bottom">
<div class="bottom-title">
<p><span class="colorBlock4"></span> <span class="Block2">本科</span> <span class="Block3">2名</span></p>
<p><span class="colorBlock5"></span> <span class="Block2">硕士</span> <span class="Block3">10名</span></p>
</div>
<div class="bottom-img">
<img src="../imgs/SVG/员工学历饼图.svg" alt="员工学历">
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="../imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
</body>
</html>

View File

@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/contactUs.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<script>
window._AMapSecurityConfig = {
securityJsCode: 'd7d163684cbe3ea85f182a42cd1b8880',
}
</script>
<script src="https://webapi.amap.com/maps?v=2.0&key=d8d0391f0356497ccdc1c0f13d4a8c33&callback=initMap"></script>
<script type="text/javascript" src="../js/contactUs.js"></script>
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="../imgs/SVG/LOGO黑色字.svg" alt="logo">
</div>
<ul>
<li> <a href="../index.html"> 首页</a></li>
<li> <a href="aboutUs.html" > 关于我们</a></li>
<li> <a href="productIntroduction.html"> 产品介绍</a></li>
<li> <a href="solution.html"> 解决方案</a></li>
<li> <a href="#" style="color: #2AC2EC;"> 联系我们</a></li>
</ul>
</div>
</header>
<section class="aboutUs">
<div class="container"></div>
<div class="aboutUs-content">
<div class="aboutUs-content-img">
<div class="with-border">
<img src="../imgs/联系我们.png" alt="联系我们">
</div>
</div>
<div class="exaboutUs-content-tt">
<p>
联系我们
</p>
<p>Contact us</p>
</div>
</div>
<div class="textBox">
<div class="gifBox">
<img src="../imgs/@标志.gif" alt="联系我们">
</div>
<div class="textBox-title">
<p>我们期待您的联系</p>
<p>
为公司的成长和发展
</p>
<p>及时选择合适的人员并将他们安置在正确的位置</p>
<p>以便每个成员</p>
<p>都能大限度地发挥各自的能力</p>
</div>
</div>
</section>
<section class="addressBox">
<div class="addressBox-top">
<div class="emailBox">
<img src="../imgs/邮件.gif" alt="邮件">
<a href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a>
</div>
<div class="positioningBox">
<img src="../imgs/定位.gif" alt="定位">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
</div>
</div>
<div class="addressBox-bottom">
<div id="mapContainer"></div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="../imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
</body>
</html>

View File

@@ -0,0 +1,184 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/productIntroduction.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<script src="../js/productIntroduction.js"></script>
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="../imgs/SVG/LOGO黑色字.svg" alt="logo">
</div>
<ul>
<li> <a href="../index.html"> 首页</a></li>
<li> <a href="aboutUs.html"> 关于我们</a></li>
<li> <a href="productIntroduction.html" style="color: #2AC2EC;"> 产品介绍</a></li>
<li> <a href="solution.html"> 解决方案</a></li>
<li> <a href="contactUs.html"> 联系我们</a></li>
</ul>
</div>
</header>
<section class="aboutUs">
<div class="CarouselBox">
<div class="carousel-container">
<div class="carousel-list">
<div class="carousel-item">
<img src="../imgs/产品介绍图(滚动)/图1.png" alt="产品介绍">
</div>
<div class="carousel-item">
<img src="../imgs/产品介绍图(滚动)/图2.png" alt="产品介绍">
</div>
<div class="carousel-item">
<img src="../imgs/产品介绍图(滚动)/图3.png" alt="产品介绍">
</div>
<div class="carousel-item">
<img src="../imgs/产品介绍图(滚动)/图4.png" alt="产品介绍">
</div>
</div>
<div class="carousel-arrow carousel-arrow-left"></div><div class="carousel-arrow carousel-arrow-right"></div> </div>
<div class="carousel-indicators">
<span class="indicator active"></span>
<span class="indicator"></span>
<span class="indicator"></span>
<span class="indicator"></span>
</div>
</div>
<div class="aboutUs-content">
<div class="aboutUs-content-img">
<div class="with-border">
<img src="../imgs/产品介绍.png" alt="">
</div>
</div>
<div class="exaboutUs-content-tt">
<p>
产品介绍
</p>
<p>Product introduction</p>
</div>
</div>
</section>
<section class="productIntroduction">
<div class="top">
<div class="top-left">
<img src="../imgs/芯片代理.png" alt="芯片代理">
<div class="text-box " >
<p>芯片代理销售服务</p>
<p>1.Game等专用加速芯片</p>
<p>2.低功耗数据传输加解密芯片</p>
</div>
</div>
<div class="top-right">
<img src="../imgs/芯片进出口.png" alt="芯片进出口">
<div class="text-box text-right">
<p>芯片进出口服务</p>
<p>提供便捷的芯片进出口业务</p>
</div>
</div>
</div>
<div class="top2Box">
<div class="top ">
<div class="top-left">
<img src="../imgs/设备研发.png" alt="设备研发">
<div class="text-box " >
<p>云计算服务器设备研发</p>
</div>
</div>
<div class="top-right">
<img src="../imgs/设备生产.png" alt="设备生产">
<div class="text-box text-right">
<p>云计算服务器设备生产</p>
</div>
</div>
</div>
</div>
<div class="bottom">
<div class="bottom-left" >
<img src="../imgs/设备销售.png" alt="设备销售">
<div class="text-box">
<p>云计算服务器设备销售</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="../imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
<script >
</script>
</body>
</html>

View File

@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/solution.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<script src="../js/solution.js"></script>
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="../imgs/SVG/LOGO黑色字.svg" alt="logo">
</div>
<ul>
<li> <a href="../index.html"> 首页</a></li>
<li> <a href="aboutUs.html" > 关于我们</a></li>
<li> <a href="productIntroduction.html"> 产品介绍</a></li>
<li> <a href="solution.html" style="color: #2AC2EC;"> 解决方案</a></li>
<li> <a href="contactUs.html"> 联系我们</a></li>
</ul>
</div>
</header>
<section class="aboutUs">
<div class="container"></div>
<div class="aboutUs-content">
<div class="aboutUs-content-img">
<div class="with-border">
<img src="../imgs/解决方案.png" alt="解决方案">
</div>
</div>
<div class="exaboutUs-content-tt">
<p>
解决方案
</p>
<p>Service case</p>
<p>公司主要代理产品:Game等专用加速芯片</p>
</div>
</div>
<div class="CarouselBox">
<div class="carousel-container">
<div class="carousel-list">
<div class="carousel-item">
<img src="../imgs/图1.png" alt="数据展示">
</div>
<div class="carousel-item">
<img src="../imgs/图2.png" alt="数据展示">
</div>
<div class="carousel-item">
<img src="../imgs/图3.png" alt="数据展示">
</div>
<div class="carousel-item">
<img src="../imgs/图4.png" alt="数据展示">
</div>
</div>
</div>
<div class="carousel-indicators">
<span class="indicator active"></span>
<span class="indicator"></span>
<span class="indicator"></span>
<span class="indicator"></span>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="../imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 682 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 306.88 315.62"><defs><style>.cls-1{fill:#2ac2ec;}.cls-2{fill:#1f599b;}.cls-3{font-size:50.03px;font-family:ArialMT, Arial;}.cls-3,.cls-4,.cls-5{fill:#fff;}.cls-4{font-size:33.08px;font-family:SimHei;letter-spacing:0.7em;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><rect class="cls-1" x="37.39" y="95.29" width="272.98" height="14.42" rx="2.21" transform="translate(123.41 -92.93) rotate(45)"/><rect class="cls-2" x="-3.49" y="93.48" width="272.98" height="14.42" rx="2.21" transform="translate(110.16 -64.55) rotate(45)"/><path class="cls-2" d="M304.77,187.73,200.39,83.36l75.82-65.74a7.21,7.21,0,1,0-9.45-10.9l-80,69.37a7.2,7.2,0,0,0-2.3,11.74l110.11,110.1a7.21,7.21,0,0,0,10.2,0h0A7.22,7.22,0,0,0,304.77,187.73Z"/><path class="cls-1" d="M122.26,115.93a7.18,7.18,0,0,0-1.48-2.19L12.31,5.27a7.21,7.21,0,0,0-10.2,0h0a7.21,7.21,0,0,0,0,10.19L105.66,119l-75.3,65.29a7.21,7.21,0,1,0,9.45,10.9l81-70.21A7.19,7.19,0,0,0,122.26,115.93Z"/><rect class="cls-1" x="154.63" y="31.51" width="93.35" height="14.42" rx="2.21" transform="translate(23.85 141.34) rotate(-40.93)"/><rect class="cls-2" x="59.11" y="156.7" width="93.35" height="14.42" rx="2.21" transform="translate(-81.52 109.37) rotate(-40.93)"/><text class="cls-3" transform="translate(29.64 256.61) scale(0.97 1)">YXSILICON</text><text class="cls-4" transform="translate(42.67 310.45) scale(1.09 1)">驭鑫科技</text><rect class="cls-5" x="88.86" y="284.55" width="4.82" height="29.55"/><rect class="cls-5" x="149.88" y="284.55" width="4.82" height="29.55"/><rect class="cls-5" x="213.56" y="284.55" width="4.82" height="29.55"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 315.47 324.85"><defs><style>.cls-1{fill:#2ac2ec;}.cls-2{fill:#1f599b;}.cls-3{font-size:51.43px;font-family:ArialMT, Arial;}.cls-4{font-size:34.01px;font-family:SimHei;letter-spacing:0.7em;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><rect class="cls-1" x="38.44" y="98.35" width="280.63" height="14.82" rx="1.35" transform="translate(127.14 -95.42) rotate(45)"/><rect class="cls-2" x="-3.59" y="96.49" width="280.63" height="14.82" rx="1.35" transform="translate(113.51 -66.25) rotate(45)"/><path class="cls-2" d="M313.3,193.38,206,86.08,284,18.49a7.41,7.41,0,0,0-9.71-11.2L192,78.61a7.3,7.3,0,0,0-2.36,1.58,7.42,7.42,0,0,0,0,10.48L302.82,203.86a7.4,7.4,0,0,0,10.48,0h0A7.4,7.4,0,0,0,313.3,193.38Z"/><path class="cls-1" d="M125.69,119.56a7.41,7.41,0,0,0-1.52-2.24L12.65,5.8a7.4,7.4,0,0,0-10.48,0h0a7.42,7.42,0,0,0,0,10.48L108.62,122.73,31.21,189.86a7.41,7.41,0,1,0,9.71,11.2l83.23-72.17A7.41,7.41,0,0,0,125.69,119.56Z"/><rect class="cls-1" x="158.96" y="32.78" width="95.96" height="14.82" rx="1.35" transform="translate(24.26 145.39) rotate(-40.93)"/><rect class="cls-2" x="60.76" y="161.47" width="95.96" height="14.82" rx="1.35" transform="translate(-84.05 112.53) rotate(-40.93)"/><text class="cls-3" transform="translate(30.46 264.18) scale(0.97 1)">YXSILICON</text><text class="cls-4" transform="translate(43.86 319.53) scale(1.09 1)">驭鑫科技</text><rect x="91.35" y="292.91" width="4.96" height="30.38"/><rect x="154.08" y="292.91" width="4.96" height="30.38"/><rect x="219.54" y="292.91" width="4.96" height="30.38"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.89 59.75"><defs><style>.cls-1{fill:#2ac2ec;opacity:0.3;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><path id="Vector" class="cls-1" d="M10.31,27.23a14.17,14.17,0,1,1,5.41,1.07A14.15,14.15,0,0,1,10.31,27.23Zm29.54,10a12.58,12.58,0,1,1,8.89,3.68,12.57,12.57,0,0,1-8.89-3.68Zm18.89,11a14.15,14.15,0,0,1,4.15,10v1.57H34.59V58.18a14.15,14.15,0,0,1,24.15-10Zm-37-15.53a15.74,15.74,0,0,1,9.7,14.53V59.75H0V47.17A15.74,15.74,0,0,1,21.74,32.64Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 557 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 99.98 99.97"><defs><style>.cls-1{fill:#2ac2ec;}.cls-2{fill:#0b3560;}.cls-3{fill:#1f599b;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><path class="cls-1" d="M26.33,26.15a33.24,33.24,0,0,1,12.49-7.83L33.48,2.81A48.8,48.8,0,0,0,14.83,14.46l0,0Z"/><path class="cls-2" d="M97.78,35.24A50.28,50.28,0,0,0,37.63,1.53l4,15.92A33.63,33.63,0,1,1,17,43.86L.87,41.1H.8a50,50,0,1,0,97-5.85Z"/><path class="cls-3" d="M17.61,41h0A33.84,33.84,0,0,1,24.35,28.3L11.92,17.69l-.05,0a49.08,49.08,0,0,0-10.1,19.2L17.58,41Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 618 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.89 70.75"><defs><style>.cls-1{fill:#b160a2;opacity:0.3;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><path id="Vector" class="cls-1" d="M31.44,39.3A15.71,15.71,0,0,1,15.72,23.59h0l.43-3.69L3.93,13.76,31.44,0,59,13.76V33.41H55V15.72l-8.29,4.17.42,3.69A15.71,15.71,0,0,1,31.45,39.3ZM62.89,62.89v7.86H0V62.89C0,54.2,14.07,47.16,31.44,47.16s31.45,7,31.45,15.73Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 478 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 99.98 99.97"><defs><style>.cls-1{fill:#b160a2;}.cls-2{fill:#601a56;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><path class="cls-1" d="M38.82,18.32C27.79,22.66,21,30.48,17.62,41L1.77,36.85C6.85,19.47,18,8.79,33.48,2.81Z"/><path class="cls-2" d="M97.78,35.24A50.28,50.28,0,0,0,37.63,1.53l4,15.92A33.63,33.63,0,1,1,17,43.86L.87,41.1H.8a50,50,0,1,0,97-5.85Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 800 KiB

172
驭鑫/yxsilicon/index.html Normal file
View File

@@ -0,0 +1,172 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/footer.css">
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<section class="banner">
<div class="container">
<section class="content">
<div class="title">
<h1>深圳驭鑫科技有限公司</h1>
<p>YXSILICON</p>
</div>
<div class="text">
<p>深圳驭鑫科技有限公司成立于2021年1月公司地址位于深圳市南山区。主要经营范围是芯片销售代理芯片进出口云计算服务器设备研发生产销售。公司注册资本为100万元人民币。</p>
</div>
<div class="list">
<ul>
<li class="nav-item" data-href="html/aboutUs.html">
<div class="roundImg">
<img src="imgs/关于我们.png" alt="关于我们">
</div>
<div class="textImg">
<pc class="imgTitle">关于我们</pc>
<p class="imgTitleEN"> About us</p>
</div>
</li>
<li class="nav-item" data-href="html/productIntroduction.html">
<div class="roundImg">
<img src="imgs/产品介绍.png" alt="产品介绍">
</div>
<div class="textImg">
<pc class="imgTitle">产品介绍</pc>
<p class="imgTitleEN"> Product introduction</p>
</div>
</li>
<li class="nav-item" data-href="html/solution.html">
<div class="roundImg">
<img src="imgs/解决方案.png" alt="解决方案">
</div>
<div class="textImg">
<pc class="imgTitle">解决方案</pc>
<p class="imgTitleEN">Service case</p>
</div>
</li>
<li class="nav-item" data-href="html/contactUs.html">
<div class="roundImg">
<img src="imgs/联系我们.png" alt="联系我们">
</div>
<div class="textImg">
<pc class="imgTitle">联系我们</pc>
<p class="imgTitleEN">Contact us</p>
</div>
</li>
</ul>
</div>
</section>
</div>
</section>
<section class="we">
<ul class="weList">
<li class="weList1">
<img src="imgs/核心技术.png" alt="核心技术">
<div class="core">
<p class="weListTitle">强大的核心技术</p>
<p class="weListText">自主研发先进技术体系</p>
<p class="weListText">产品竞争的关键技术集群</p>
</div>
</li>
<li class="weList2">
<img src="imgs/技术团队.png" alt="技术团队">
<div class="core2">
<p class="weListTitle">优秀的技术团队</p>
<p class="weListText">专业技术开发团队</p>
<p class="weListText">专注于产品的研发和测试</p>
</div>
</li>
<li class="weList3">
<img src="imgs/技术支持.png" alt="技术支持">
<div class="core3">
<p class="weListTitle">专业的技术支持</p>
<p class="weListText">定制化的解决方案</p>
<p class="weListText">资深工程师团队全程护航</p>
</div>
</li>
</ul>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="./imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const items = document.querySelectorAll('.nav-item');
items.forEach(item => {
item.addEventListener('click', (e) => {
const href = item.getAttribute('data-href');
if (!href) {
console.error('未设置跳转路径');
e.preventDefault();
return;
}
// 检查路径是否有效
if (href.startsWith('/page')) {
console.error('无效的路径:', href);
e.preventDefault();
return;
}
window.location.href = href;
});
// 保持现有的键盘访问支持
item.addEventListener('keydown', (e) => {
if (e.key === 'Enter') {
const href = item.getAttribute('data-href');
if (href && !href.startsWith('/page')) {
window.location.href = href;
}
}
});
});
});
</script>
</body>
</html>

View File

@@ -0,0 +1,120 @@
function initAMap() {
try {
// 更精确的地址
const address = '广东省深圳市南山区高新中三道2号软件园一期7栋303室';
// 创建地图实例 - 延迟创建,等待地址解析
let map = null;
// 地址解析
AMap.plugin('AMap.Geocoder', function() {
const geocoder = new AMap.Geocoder({
city: "深圳", // 指定城市提高精度
radius: 1000 // 搜索半径
});
geocoder.getLocation(address, function(status, result) {
if (status === 'complete' && result.info === 'OK') {
// 获取经纬度
const lnglat = result.geocodes[0].location;
// 在获取到坐标后再初始化地图,并直接设置中心点
map = new AMap.Map('mapContainer', {
zoom: 17, // 放大缩放级别以聚焦位置
center: [lnglat.lng, lnglat.lat], // 直接设置中心点
viewMode: '3D', // 使用3D视图更生动
resizeEnable: true, // 监控地图容器尺寸变化
pitch: 30, // 俯视角度
mapStyle: 'amap://styles/normal' // 使用标准彩色地图
});
// 添加标记
const marker = new AMap.Marker({
position: [lnglat.lng, lnglat.lat],
title: '深圳驭鑫科技有限公司',
animation: 'AMAP_ANIMATION_DROP',
offset: new AMap.Pixel(-13, -30)
});
// 将标记添加到地图
map.add(marker);
// 创建信息窗体内容
const content = `
<div class="info-content">
<div class="info-title">深圳驭鑫科技有限公司</div>
<div class="info-address">${address}</div>
</div>
`;
// 创建信息窗体
const infoWindow = new AMap.InfoWindow({
content: content,
offset: new AMap.Pixel(0, -30),
closeWhenClickMap: true
});
// 确保地图加载完成后再打开信息窗体
map.on('complete', function() {
// 默认打开信息窗体
infoWindow.open(map, [lnglat.lng, lnglat.lat]);
});
// 绑定标记点击事件
marker.on('click', function() {
infoWindow.open(map, marker.getPosition());
});
// 添加缩放控件
map.addControl(new AMap.ToolBar({
position: 'RB'
}));
// 添加比例尺控件
map.addControl(new AMap.Scale());
// 确保标记点居中显示
map.setFitView([marker]);
// 适应地图大小变化
window.addEventListener('resize', function() {
map.resize();
// 重新居中
map.setCenter([lnglat.lng, lnglat.lat]);
});
} else {
console.error('地址解析失败:', result);
document.getElementById('mapContainer').innerHTML =
'<div style="text-align:center;padding:20px;color:#f00;">地址定位失败,请刷新重试</div>';
// 地址解析失败时,创建一个默认地图
map = new AMap.Map('mapContainer', {
zoom: 12,
center: [113.953537, 22.533354], // 深圳市中心
viewMode: '2D',
resizeEnable: true,
mapStyle: 'amap://styles/normal'
});
}
});
});
} catch (error) {
console.error('地图初始化失败:', error);
document.getElementById('mapContainer').innerHTML =
'<div style="text-align:center;padding:20px;color:#f00;">地图加载失败,请刷新重试</div>';
}
}
// 当DOM加载完成时如果AMap已加载则初始化地图
document.addEventListener('DOMContentLoaded', function() {
if (typeof AMap !== 'undefined') {
initAMap();
}
});
// 暴露全局函数供回调使用
window.initMap = function() {
if (typeof AMap !== 'undefined') {
initAMap();
}
};

View File

@@ -0,0 +1,160 @@
document.addEventListener('DOMContentLoaded', () => {
// 获取所需的DOM元素
const container = document.querySelector('.carousel-container');
const list = document.querySelector('.carousel-list');
const items = document.querySelectorAll('.carousel-item');
const prevBtn = document.querySelector('.carousel-arrow-left');
const nextBtn = document.querySelector('.carousel-arrow-right');
const indicators = document.querySelectorAll('.indicator');
// 如果元素不存在,直接返回
if (!container || !list || !items.length) {
console.error('轮播图元素不存在,初始化失败');
return;
}
// 克隆第一个和最后一个项目
const firstClone = items[0].cloneNode(true);
const lastClone = items[items.length - 1].cloneNode(true);
// 将克隆的元素添加到列表中
list.appendChild(firstClone);
list.insertBefore(lastClone, list.firstChild);
// 设置初始位置因为添加了一个项目在前面所以从1开始
let currentIndex = 1;
let interval = null;
let isTransitioning = false;
// 初始化位置
updatePosition(false);
// 更新位置的函数
function updatePosition(withTransition = true) {
// 如果需要过渡动画
if (withTransition) {
list.style.transition = 'transform 0.5s ease';
} else {
list.style.transition = 'none';
}
// 计算位置并应用变换
const position = -currentIndex * 100;
list.style.transform = `translateX(${position}%)`;
// 更新指示器状态注意要减去1因为我们添加了克隆项目
updateIndicators();
}
// 更新指示器状态
function updateIndicators() {
// 考虑循环将currentIndex转换回真实索引
const realIndex = currentIndex - 1;
// 使用模运算确保索引在有效范围内
const activeIndex = (realIndex + items.length) % items.length;
indicators.forEach((indicator, i) => {
indicator.classList.toggle('active', i === activeIndex);
});
}
// 自动播放函数
function startAutoPlay() {
if (interval) clearInterval(interval);
interval = setInterval(nextSlide, 3000);
}
// 暂停自动播放
function stopAutoPlay() {
clearInterval(interval);
}
// 下一张函数
function nextSlide() {
if (isTransitioning) return;
isTransitioning = true;
currentIndex++;
updatePosition();
}
// 上一张函数
function prevSlide() {
if (isTransitioning) return;
isTransitioning = true;
currentIndex--;
updatePosition();
}
// 处理过渡结束事件
list.addEventListener('transitionend', () => {
isTransitioning = false;
// 如果到达了最后一个克隆项
if (currentIndex >= items.length + 1) {
currentIndex = 1;
updatePosition(false);
}
// 如果到达了第一个克隆项
if (currentIndex <= 0) {
currentIndex = items.length;
updatePosition(false);
}
});
// 绑定按钮事件
prevBtn.addEventListener('click', () => {
prevSlide();
stopAutoPlay();
startAutoPlay();
});
nextBtn.addEventListener('click', () => {
nextSlide();
stopAutoPlay();
startAutoPlay();
});
// 绑定指示器点击事件
indicators.forEach((indicator, index) => {
indicator.addEventListener('click', () => {
currentIndex = index + 1; // +1因为我们添加了克隆项目
updatePosition();
stopAutoPlay();
startAutoPlay();
});
});
// 鼠标悬停暂停
container.addEventListener('mouseenter', stopAutoPlay);
container.addEventListener('mouseleave', startAutoPlay);
// 添加触摸滑动支持
let touchStartX = 0;
let touchEndX = 0;
container.addEventListener('touchstart', (e) => {
touchStartX = e.touches[0].clientX;
stopAutoPlay();
});
container.addEventListener('touchend', (e) => {
touchEndX = e.changedTouches[0].clientX;
const difference = touchStartX - touchEndX;
if (Math.abs(difference) > 50) {
if (difference > 0) {
nextSlide();
} else {
prevSlide();
}
}
startAutoPlay();
});
// 开始自动播放
startAutoPlay();
});

View File

@@ -0,0 +1,160 @@
document.addEventListener('DOMContentLoaded', () => {
// 获取所需的DOM元素
const container = document.querySelector('.carousel-container');
const list = document.querySelector('.carousel-list');
const items = document.querySelectorAll('.carousel-item');
const prevBtn = document.querySelector('.carousel-arrow-left');
const nextBtn = document.querySelector('.carousel-arrow-right');
const indicators = document.querySelectorAll('.indicator');
// 如果元素不存在,直接返回
if (!container || !list || !items.length) {
console.error('轮播图元素不存在,初始化失败');
return;
}
// 克隆第一个和最后一个项目
const firstClone = items[0].cloneNode(true);
const lastClone = items[items.length - 1].cloneNode(true);
// 将克隆的元素添加到列表中
list.appendChild(firstClone);
list.insertBefore(lastClone, list.firstChild);
// 设置初始位置因为添加了一个项目在前面所以从1开始
let currentIndex = 1;
let interval = null;
let isTransitioning = false;
// 初始化位置
updatePosition(false);
// 更新位置的函数
function updatePosition(withTransition = true) {
// 如果需要过渡动画
if (withTransition) {
list.style.transition = 'transform 0.5s ease';
} else {
list.style.transition = 'none';
}
// 计算位置并应用变换
const position = -currentIndex * 100;
list.style.transform = `translateX(${position}%)`;
// 更新指示器状态注意要减去1因为我们添加了克隆项目
updateIndicators();
}
// 更新指示器状态
function updateIndicators() {
// 考虑循环将currentIndex转换回真实索引
const realIndex = currentIndex - 1;
// 使用模运算确保索引在有效范围内
const activeIndex = (realIndex + items.length) % items.length;
indicators.forEach((indicator, i) => {
indicator.classList.toggle('active', i === activeIndex);
});
}
// 自动播放函数
function startAutoPlay() {
if (interval) clearInterval(interval);
interval = setInterval(nextSlide, 3000);
}
// 暂停自动播放
function stopAutoPlay() {
clearInterval(interval);
}
// 下一张函数
function nextSlide() {
if (isTransitioning) return;
isTransitioning = true;
currentIndex++;
updatePosition();
}
// 上一张函数
function prevSlide() {
if (isTransitioning) return;
isTransitioning = true;
currentIndex--;
updatePosition();
}
// 处理过渡结束事件
list.addEventListener('transitionend', () => {
isTransitioning = false;
// 如果到达了最后一个克隆项
if (currentIndex >= items.length + 1) {
currentIndex = 1;
updatePosition(false);
}
// 如果到达了第一个克隆项
if (currentIndex <= 0) {
currentIndex = items.length;
updatePosition(false);
}
});
// // 绑定按钮事件
// prevBtn.addEventListener('click', () => {
// prevSlide();
// stopAutoPlay();
// startAutoPlay();
// });
// nextBtn.addEventListener('click', () => {
// nextSlide();
// stopAutoPlay();
// startAutoPlay();
// });
// 绑定指示器点击事件
indicators.forEach((indicator, index) => {
indicator.addEventListener('click', () => {
currentIndex = index + 1; // +1因为我们添加了克隆项目
updatePosition();
stopAutoPlay();
startAutoPlay();
});
});
// 鼠标悬停暂停
container.addEventListener('mouseenter', stopAutoPlay);
container.addEventListener('mouseleave', startAutoPlay);
// 添加触摸滑动支持
let touchStartX = 0;
let touchEndX = 0;
container.addEventListener('touchstart', (e) => {
touchStartX = e.touches[0].clientX;
stopAutoPlay();
});
container.addEventListener('touchend', (e) => {
touchEndX = e.changedTouches[0].clientX;
const difference = touchStartX - touchEndX;
if (Math.abs(difference) > 50) {
if (difference > 0) {
nextSlide();
} else {
prevSlide();
}
}
startAutoPlay();
});
// 开始自动播放
startAutoPlay();
});

View File

@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}

View File

@@ -0,0 +1,227 @@
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.
# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
# /etc/apache2/
# |-- apache2.conf
# | `-- ports.conf
# |-- mods-enabled
# | |-- *.load
# | `-- *.conf
# |-- conf-enabled
# | `-- *.conf
# `-- sites-enabled
# `-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
# together by including all remaining configuration files when starting up the
# web server.
#
# * ports.conf is always included from the main configuration file. It is
# supposed to determine listening ports for incoming connections which can be
# customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
# directories contain particular configuration snippets which manage modules,
# global configuration fragments, or virtual host configurations,
# respectively.
#
# They are activated by symlinking available configuration files from their
# respective *-available/ counterparts. These should be managed by using our
# helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
# their respective man pages for detailed information.
#
# * The binary is called apache2. Due to the use of environment variables, in
# the default configuration, apache2 needs to be started/stopped with
# /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
# work with the default configuration.
# Global configuration
#
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"
#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
#Mutex file:${APACHE_LOCK_DIR} default
#
# The directory where shm and other runtime files will be stored.
#
DefaultRuntimeDir ${APACHE_RUN_DIR}
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5
# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log
#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn
# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
# Include list of ports to listen on
Include ports.conf
# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
#<Directory /srv/>
# Options Indexes FollowSymLinks
# AllowOverride None
# Require all granted
#</Directory>
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.
# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf
# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,8 @@
# Read the documentation before enabling AddDefaultCharset.
# In general, it is only a good idea if you know that all your files
# have this encoding. It will override any encoding given in the files
# in meta http-equiv or xml encoding tags.
#AddDefaultCharset UTF-8
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,81 @@
# Customizable error responses come in three flavors:
# 1) plain text
# 2) local redirects
# 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections. We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
#Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
# even on a per-VirtualHost basis. If you include the Alias in the global server
# context, is has to come _before_ the 'Alias /error/ ...' line.
#
# The default include files will display your Apache version number and your
# ServerAdmin email address regardless of the setting of ServerSignature.
#
# WARNING: The configuration below will NOT work out of the box if you have a
# SetHandler directive in a <Location /> context somewhere. Adding
# the following three lines AFTER the <Location /> context should
# make it work in most cases:
# <Location /error/>
# SetHandler none
# </Location>
#
# The internationalized error documents require mod_alias, mod_include
# and mod_negotiation. To activate them, uncomment the following 37 lines.
#<IfModule mod_negotiation.c>
# <IfModule mod_include.c>
# <IfModule mod_alias.c>
#
# Alias /error/ "/usr/share/apache2/error/"
#
# <Directory "/usr/share/apache2/error">
# Options IncludesNoExec
# AddOutputFilter Includes html
# AddHandler type-map var
# Order allow,deny
# Allow from all
# LanguagePriority en cs de es fr it nl sv pt-br ro
# ForceLanguagePriority Prefer Fallback
# </Directory>
#
# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
# ErrorDocument 410 /error/HTTP_GONE.html.var
# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
# </IfModule>
# </IfModule>
#</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,4 @@
# Define an access log for VirtualHosts that don't define their own logfile
CustomLog ${APACHE_LOG_DIR}/other_vhosts_access.log vhost_combined
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,73 @@
#
# Disable access to the entire file system except for the directories that
# are explicitly allowed later.
#
# This currently breaks the configurations that come with some web application
# Debian packages.
#
#<Directory />
# AllowOverride None
# Require all denied
#</Directory>
# Changing the following options will not really affect the security of the
# server, but might make attacks slightly more difficult in some cases.
#
# ServerTokens
# This directive configures what you return as the Server HTTP response
# Header. The default is 'Full' which sends information about the OS-Type
# and compiled in modules.
# Set to one of: Full | OS | Minimal | Minor | Major | Prod
# where Full conveys the most information, and Prod the least.
#ServerTokens Minimal
ServerTokens OS
#ServerTokens Full
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#ServerSignature Off
ServerSignature On
#
# Allow TRACE method
#
# Set to "extended" to also reflect the request body (only for testing and
# diagnostic purposes).
#
# Set to one of: On | Off | extended
TraceEnable Off
#TraceEnable On
#
# Forbid access to version control directories
#
# If you use version control systems in your document root, you should
# probably deny access to their directories. For example, for subversion:
#
#<DirectoryMatch "/\.svn">
# Require all denied
#</DirectoryMatch>
#
# Setting this header will prevent MSIE from interpreting files as something
# else than declared by the content type in the HTTP headers.
# Requires mod_headers to be enabled.
#
#Header set X-Content-Type-Options: "nosniff"
#
# Setting this header will prevent other sites from embedding pages from this
# site as frames. This defends against clickjacking attacks.
# Requires mod_headers to be enabled.
#
#Header set X-Frame-Options: "sameorigin"
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,20 @@
<IfModule mod_alias.c>
<IfModule mod_cgi.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfModule mod_cgid.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfDefine ENABLE_USR_LIB_CGI_BIN>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
</Directory>
</IfDefine>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,8 @@
# Read the documentation before enabling AddDefaultCharset.
# In general, it is only a good idea if you know that all your files
# have this encoding. It will override any encoding given in the files
# in meta http-equiv or xml encoding tags.
#AddDefaultCharset UTF-8
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,81 @@
# Customizable error responses come in three flavors:
# 1) plain text
# 2) local redirects
# 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections. We use
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
#Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
# even on a per-VirtualHost basis. If you include the Alias in the global server
# context, is has to come _before_ the 'Alias /error/ ...' line.
#
# The default include files will display your Apache version number and your
# ServerAdmin email address regardless of the setting of ServerSignature.
#
# WARNING: The configuration below will NOT work out of the box if you have a
# SetHandler directive in a <Location /> context somewhere. Adding
# the following three lines AFTER the <Location /> context should
# make it work in most cases:
# <Location /error/>
# SetHandler none
# </Location>
#
# The internationalized error documents require mod_alias, mod_include
# and mod_negotiation. To activate them, uncomment the following 37 lines.
#<IfModule mod_negotiation.c>
# <IfModule mod_include.c>
# <IfModule mod_alias.c>
#
# Alias /error/ "/usr/share/apache2/error/"
#
# <Directory "/usr/share/apache2/error">
# Options IncludesNoExec
# AddOutputFilter Includes html
# AddHandler type-map var
# Order allow,deny
# Allow from all
# LanguagePriority en cs de es fr it nl sv pt-br ro
# ForceLanguagePriority Prefer Fallback
# </Directory>
#
# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
# ErrorDocument 410 /error/HTTP_GONE.html.var
# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
# </IfModule>
# </IfModule>
#</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,4 @@
# Define an access log for VirtualHosts that don't define their own logfile
CustomLog ${APACHE_LOG_DIR}/other_vhosts_access.log vhost_combined
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,73 @@
#
# Disable access to the entire file system except for the directories that
# are explicitly allowed later.
#
# This currently breaks the configurations that come with some web application
# Debian packages.
#
#<Directory />
# AllowOverride None
# Require all denied
#</Directory>
# Changing the following options will not really affect the security of the
# server, but might make attacks slightly more difficult in some cases.
#
# ServerTokens
# This directive configures what you return as the Server HTTP response
# Header. The default is 'Full' which sends information about the OS-Type
# and compiled in modules.
# Set to one of: Full | OS | Minimal | Minor | Major | Prod
# where Full conveys the most information, and Prod the least.
#ServerTokens Minimal
ServerTokens OS
#ServerTokens Full
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#ServerSignature Off
ServerSignature On
#
# Allow TRACE method
#
# Set to "extended" to also reflect the request body (only for testing and
# diagnostic purposes).
#
# Set to one of: On | Off | extended
TraceEnable Off
#TraceEnable On
#
# Forbid access to version control directories
#
# If you use version control systems in your document root, you should
# probably deny access to their directories. For example, for subversion:
#
#<DirectoryMatch "/\.svn">
# Require all denied
#</DirectoryMatch>
#
# Setting this header will prevent MSIE from interpreting files as something
# else than declared by the content type in the HTTP headers.
# Requires mod_headers to be enabled.
#
#Header set X-Content-Type-Options: "nosniff"
#
# Setting this header will prevent other sites from embedding pages from this
# site as frames. This defends against clickjacking attacks.
# Requires mod_headers to be enabled.
#
#Header set X-Frame-Options: "sameorigin"
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,20 @@
<IfModule mod_alias.c>
<IfModule mod_cgi.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfModule mod_cgid.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfDefine ENABLE_USR_LIB_CGI_BIN>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
</Directory>
</IfDefine>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,47 @@
# envvars - default environment variables for apache2ctl
# this won't be correct after changing uid
unset HOME
# for supporting multiple apache2 instances
if [ "${APACHE_CONFDIR##/etc/apache2-}" != "${APACHE_CONFDIR}" ] ; then
SUFFIX="-${APACHE_CONFDIR##/etc/apache2-}"
else
SUFFIX=
fi
# Since there is no sane way to get the parsed apache2 config in scripts, some
# settings are defined via environment variables and then used in apache2ctl,
# /etc/init.d/apache2, /etc/logrotate.d/apache2, etc.
export APACHE_RUN_USER=www-data
export APACHE_RUN_GROUP=www-data
# temporary state file location. This might be changed to /run in Wheezy+1
export APACHE_PID_FILE=/var/run/apache2$SUFFIX/apache2.pid
export APACHE_RUN_DIR=/var/run/apache2$SUFFIX
export APACHE_LOCK_DIR=/var/lock/apache2$SUFFIX
# Only /var/log/apache2 is handled by /etc/logrotate.d/apache2.
export APACHE_LOG_DIR=/var/log/apache2$SUFFIX
## The locale used by some modules like mod_dav
export LANG=C
## Uncomment the following line to use the system default locale instead:
#. /etc/default/locale
export LANG
## The command to get the status for 'apache2ctl status'.
## Some packages providing 'www-browser' need '--dump' instead of '-dump'.
#export APACHE_LYNX='www-browser -dump'
## If you need a higher file descriptor limit, uncomment and adjust the
## following line (default is 8192):
#APACHE_ULIMIT_MAX_FILES='ulimit -n 65536'
## If you would like to pass arguments to the web server, add them below
## to the APACHE_ARGUMENTS environment.
#export APACHE_ARGUMENTS=''
## Enable the debug mode for maintainer scripts.
## This will produce a verbose output on package installations of web server modules and web application
## installations which interact with Apache
#export APACHE2_MAINTSCRIPT_DEBUG=1

View File

@@ -0,0 +1,935 @@
# Magic data for mod_mime_magic (originally for file(1) command)
#
# The format is 4-5 columns:
# Column #1: byte number to begin checking from, ">" indicates continuation
# Column #2: type of data to match
# Column #3: contents of data to match
# Column #4: MIME type of result
# Column #5: MIME encoding of result (optional)
#------------------------------------------------------------------------------
# Localstuff: file(1) magic for locally observed files
# Add any locally observed files here.
# Real Audio (Magic .ra\0375)
0 belong 0x2e7261fd audio/x-pn-realaudio
0 string .RMF application/vnd.rn-realmedia
#video/x-pn-realvideo
#video/vnd.rn-realvideo
#application/vnd.rn-realmedia
# sigh, there are many mimes for that but the above are the most common.
# Taken from magic, converted to magic.mime
# mime types according to http://www.geocities.com/nevilo/mod.htm:
# audio/it .it
# audio/x-zipped-it .itz
# audio/xm fasttracker modules
# audio/x-s3m screamtracker modules
# audio/s3m screamtracker modules
# audio/x-zipped-mod mdz
# audio/mod mod
# audio/x-mod All modules (mod, s3m, 669, mtm, med, xm, it, mdz, stm, itz, xmz, s3z)
# Taken from loader code from mikmod version 2.14
# by Steve McIntyre (stevem@chiark.greenend.org.uk)
# <doj@cubic.org> added title printing on 2003-06-24
0 string MAS_UTrack_V00
>14 string >/0 audio/x-mod
#audio/x-tracker-module
#0 string UN05 MikMod UNI format module sound data
0 string Extended\ Module: audio/x-mod
#audio/x-tracker-module
##>17 string >\0 Title: "%s"
21 string/c \!SCREAM! audio/x-mod
#audio/x-screamtracker-module
21 string BMOD2STM audio/x-mod
#audio/x-screamtracker-module
1080 string M.K. audio/x-mod
#audio/x-protracker-module
#>0 string >\0 Title: "%s"
1080 string M!K! audio/x-mod
#audio/x-protracker-module
#>0 string >\0 Title: "%s"
1080 string FLT4 audio/x-mod
#audio/x-startracker-module
#>0 string >\0 Title: "%s"
1080 string FLT8 audio/x-mod
#audio/x-startracker-module
#>0 string >\0 Title: "%s"
1080 string 4CHN audio/x-mod
#audio/x-fasttracker-module
#>0 string >\0 Title: "%s"
1080 string 6CHN audio/x-mod
#audio/x-fasttracker-module
#>0 string >\0 Title: "%s"
1080 string 8CHN audio/x-mod
#audio/x-fasttracker-module
#>0 string >\0 Title: "%s"
1080 string CD81 audio/x-mod
#audio/x-oktalyzer-tracker-module
#>0 string >\0 Title: "%s"
1080 string OKTA audio/x-mod
#audio/x-oktalyzer-tracker-module
#>0 string >\0 Title: "%s"
# Not good enough.
#1082 string CH
#>1080 string >/0 %.2s-channel Fasttracker "oktalyzer" module sound data
1080 string 16CN audio/x-mod
#audio/x-taketracker-module
#>0 string >\0 Title: "%s"
1080 string 32CN audio/x-mod
#audio/x-taketracker-module
#>0 string >\0 Title: "%s"
# Impuse tracker module (it)
0 string IMPM audio/x-mod
#>4 string >\0 "%s"
#>40 leshort !0 compatible w/ITv%x
#>42 leshort !0 created w/ITv%x
#------------------------------------------------------------------------------
# end local stuff
#------------------------------------------------------------------------------
# xml based formats!
# svg
0 string \<?xml
# text/xml
>38 string \<\!DOCTYPE\040svg image/svg+xml
# xml
0 string \<?xml text/xml
#------------------------------------------------------------------------------
# Java
0 short 0xcafe
>2 short 0xbabe application/java
#------------------------------------------------------------------------------
# audio: file(1) magic for sound formats
#
# from Jan Nicolai Langfeldt <janl@ifi.uio.no>,
#
# Sun/NeXT audio data
0 string .snd
>12 belong 1 audio/basic
>12 belong 2 audio/basic
>12 belong 3 audio/basic
>12 belong 4 audio/basic
>12 belong 5 audio/basic
>12 belong 6 audio/basic
>12 belong 7 audio/basic
>12 belong 23 audio/x-adpcm
# DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
# that uses little-endian encoding and has a different magic number
# (0x0064732E in little-endian encoding).
0 lelong 0x0064732E
>12 lelong 1 audio/x-dec-basic
>12 lelong 2 audio/x-dec-basic
>12 lelong 3 audio/x-dec-basic
>12 lelong 4 audio/x-dec-basic
>12 lelong 5 audio/x-dec-basic
>12 lelong 6 audio/x-dec-basic
>12 lelong 7 audio/x-dec-basic
# compressed (G.721 ADPCM)
>12 lelong 23 audio/x-dec-adpcm
# Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
# AIFF audio data
8 string AIFF audio/x-aiff
# AIFF-C audio data
8 string AIFC audio/x-aiff
# IFF/8SVX audio data
8 string 8SVX audio/x-aiff
# Creative Labs AUDIO stuff
# Standard MIDI data
0 string MThd audio/unknown
#>9 byte >0 (format %d)
#>11 byte >1 using %d channels
# Creative Music (CMF) data
0 string CTMF audio/unknown
# SoundBlaster instrument data
0 string SBI audio/unknown
# Creative Labs voice data
0 string Creative\ Voice\ File audio/unknown
## is this next line right? it came this way...
#>19 byte 0x1A
#>23 byte >0 - version %d
#>22 byte >0 \b.%d
# [GRR 950115: is this also Creative Labs? Guessing that first line
# should be string instead of unknown-endian long...]
#0 long 0x4e54524b MultiTrack sound data
#0 string NTRK MultiTrack sound data
#>4 long x - version %ld
# Microsoft WAVE format (*.wav)
# [GRR 950115: probably all of the shorts and longs should be leshort/lelong]
# Microsoft RIFF
0 string RIFF
# - WAVE format
>8 string WAVE audio/x-wav
>8 string/B AVI video/x-msvideo
#
>8 string CDRA image/x-coreldraw
# AAC (aka MPEG-2 NBC)
0 beshort&0xfff6 0xfff0 audio/X-HX-AAC-ADTS
0 string ADIF audio/X-HX-AAC-ADIF
0 beshort&0xffe0 0x56e0 audio/MP4A-LATM
0 beshort 0x4De1 audio/MP4A-LATM
# MPEG Layer 3 sound files
0 beshort&0xfffe =0xfffa audio/mpeg
#MP3 with ID3 tag
0 string ID3 audio/mpeg
# Ogg/Vorbis
0 string OggS application/ogg
#------------------------------------------------------------------------------
# c-lang: file(1) magic for C programs or various scripts
#
# XPM icons (Greg Roelofs, newt@uchicago.edu)
# ideally should go into "images", but entries below would tag XPM as C source
0 string /*\ XPM image/x-xpmi 7bit
# 3DS (3d Studio files)
#16 beshort 0x3d3d image/x-3ds
# this first will upset you if you're a PL/1 shop... (are there any left?)
# in which case rm it; ascmagic will catch real C programs
# C or REXX program text
#0 string /* text/x-c
# C++ program text
#0 string // text/x-c++
#------------------------------------------------------------------------------
# commands: file(1) magic for various shells and interpreters
#
#0 string :\ shell archive or commands for antique kernel text
0 string #!/bin/sh application/x-shellscript
0 string #!\ /bin/sh application/x-shellscript
0 string #!/bin/csh application/x-shellscript
0 string #!\ /bin/csh application/x-shellscript
# korn shell magic, sent by George Wu, gwu@clyde.att.com
0 string #!/bin/ksh application/x-shellscript
0 string #!\ /bin/ksh application/x-shellscript
0 string #!/bin/tcsh application/x-shellscript
0 string #!\ /bin/tcsh application/x-shellscript
0 string #!/usr/local/tcsh application/x-shellscript
0 string #!\ /usr/local/tcsh application/x-shellscript
0 string #!/usr/local/bin/tcsh application/x-shellscript
0 string #!\ /usr/local/bin/tcsh application/x-shellscript
# bash shell magic, from Peter Tobias (tobias@server.et-inf.fho-emden.de)
0 string #!/bin/bash application/x-shellscript
0 string #!\ /bin/bash application/x-shellscript
0 string #!/usr/local/bin/bash application/x-shellscript
0 string #!\ /usr/local/bin/bash application/x-shellscript
#
# zsh/ash/ae/nawk/gawk magic from cameron@cs.unsw.oz.au (Cameron Simpson)
0 string #!/bin/zsh application/x-shellscript
0 string #!/usr/bin/zsh application/x-shellscript
0 string #!/usr/local/bin/zsh application/x-shellscript
0 string #!\ /usr/local/bin/zsh application/x-shellscript
0 string #!/usr/local/bin/ash application/x-shellscript
0 string #!\ /usr/local/bin/ash application/x-shellscript
#0 string #!/usr/local/bin/ae Neil Brown's ae
#0 string #!\ /usr/local/bin/ae Neil Brown's ae
0 string #!/bin/nawk application/x-nawk
0 string #!\ /bin/nawk application/x-nawk
0 string #!/usr/bin/nawk application/x-nawk
0 string #!\ /usr/bin/nawk application/x-nawk
0 string #!/usr/local/bin/nawk application/x-nawk
0 string #!\ /usr/local/bin/nawk application/x-nawk
0 string #!/bin/gawk application/x-gawk
0 string #!\ /bin/gawk application/x-gawk
0 string #!/usr/bin/gawk application/x-gawk
0 string #!\ /usr/bin/gawk application/x-gawk
0 string #!/usr/local/bin/gawk application/x-gawk
0 string #!\ /usr/local/bin/gawk application/x-gawk
#
0 string #!/bin/awk application/x-awk
0 string #!\ /bin/awk application/x-awk
0 string #!/usr/bin/awk application/x-awk
0 string #!\ /usr/bin/awk application/x-awk
# update to distinguish from *.vcf files by Joerg Jenderek: joerg dot jenderek at web dot de
#0 regex BEGIN[[:space:]]*[{] application/x-awk
# For Larry Wall's perl language. The ``eval'' line recognizes an
# outrageously clever hack for USG systems.
# Keith Waclena <keith@cerberus.uchicago.edu>
0 string #!/bin/perl application/x-perl
0 string #!\ /bin/perl application/x-perl
0 string eval\ "exec\ /bin/perl application/x-perl
0 string #!/usr/bin/perl application/x-perl
0 string #!\ /usr/bin/perl application/x-perl
0 string eval\ "exec\ /usr/bin/perl application/x-perl
0 string #!/usr/local/bin/perl application/x-perl
0 string #!\ /usr/local/bin/perl application/x-perl
0 string eval\ "exec\ /usr/local/bin/perl application/x-perl
#------------------------------------------------------------------------------
# compress: file(1) magic for pure-compression formats (no archives)
#
# compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, whap, etc.
#
# Formats for various forms of compressed data
# Formats for "compress" proper have been moved into "compress.c",
# because it tries to uncompress it to figure out what's inside.
# standard unix compress
#0 string \037\235 application/x-compress
# gzip (GNU zip, not to be confused with [Info-ZIP/PKWARE] zip archiver)
#0 string \037\213 application/x-gzip
0 string PK\003\004 application/x-zip
# RAR archiver (Greg Roelofs, newt@uchicago.edu)
0 string Rar! application/x-rar
# According to gzip.h, this is the correct byte order for packed data.
0 string \037\036 application/octet-stream
#
# This magic number is byte-order-independent.
#
0 short 017437 application/octet-stream
# XXX - why *two* entries for "compacted data", one of which is
# byte-order independent, and one of which is byte-order dependent?
#
# compacted data
0 short 0x1fff application/octet-stream
0 string \377\037 application/octet-stream
# huf output
0 short 0145405 application/octet-stream
# Squeeze and Crunch...
# These numbers were gleaned from the Unix versions of the programs to
# handle these formats. Note that I can only uncrunch, not crunch, and
# I didn't have a crunched file handy, so the crunch number is untested.
# Keith Waclena <keith@cerberus.uchicago.edu>
#0 leshort 0x76FF squeezed data (CP/M, DOS)
#0 leshort 0x76FE crunched data (CP/M, DOS)
# Freeze
#0 string \037\237 Frozen file 2.1
#0 string \037\236 Frozen file 1.0 (or gzip 0.5)
# lzh?
#0 string \037\240 LZH compressed data
257 string ustar\0 application/x-tar posix
257 string ustar\040\040\0 application/x-tar gnu
0 short 070707 application/x-cpio
0 short 0143561 application/x-cpio swapped
0 string =<ar> application/x-archive
0 string \!<arch> application/x-archive
>8 string debian application/x-debian-package
#------------------------------------------------------------------------------
#
# RPM: file(1) magic for Red Hat Packages Erik Troan (ewt@redhat.com)
#
0 beshort 0xedab
>2 beshort 0xeedb application/x-rpm
0 lelong&0x8080ffff 0x0000081a application/x-arc lzw
0 lelong&0x8080ffff 0x0000091a application/x-arc squashed
0 lelong&0x8080ffff 0x0000021a application/x-arc uncompressed
0 lelong&0x8080ffff 0x0000031a application/x-arc packed
0 lelong&0x8080ffff 0x0000041a application/x-arc squeezed
0 lelong&0x8080ffff 0x0000061a application/x-arc crunched
0 leshort 0xea60 application/x-arj
# LHARC/LHA archiver (Greg Roelofs, newt@uchicago.edu)
2 string -lh0- application/x-lharc lh0
2 string -lh1- application/x-lharc lh1
2 string -lz4- application/x-lharc lz4
2 string -lz5- application/x-lharc lz5
# [never seen any but the last; -lh4- reported in comp.compression:]
2 string -lzs- application/x-lha lzs
2 string -lh\ - application/x-lha lh
2 string -lhd- application/x-lha lhd
2 string -lh2- application/x-lha lh2
2 string -lh3- application/x-lha lh3
2 string -lh4- application/x-lha lh4
2 string -lh5- application/x-lha lh5
2 string -lh6- application/x-lha lh6
2 string -lh7- application/x-lha lh7
# Shell archives
10 string #\ This\ is\ a\ shell\ archive application/octet-stream x-shell
#------------------------------------------------------------------------------
# frame: file(1) magic for FrameMaker files
#
# This stuff came on a FrameMaker demo tape, most of which is
# copyright, but this file is "published" as witness the following:
#
0 string \<MakerFile application/x-frame
0 string \<MIFFile application/x-frame
0 string \<MakerDictionary application/x-frame
0 string \<MakerScreenFon application/x-frame
0 string \<MML application/x-frame
0 string \<Book application/x-frame
0 string \<Maker application/x-frame
#------------------------------------------------------------------------------
# html: file(1) magic for HTML (HyperText Markup Language) docs
#
# from Daniel Quinlan <quinlan@yggdrasil.com>
#
0 string/cB \<!DOCTYPE\ html text/html
0 string/cb \<head text/html
0 string/cb \<title text/html
0 string/bc \<html text/html
0 string \<!-- text/html
0 string/c \<h1 text/html
0 string \<?xml text/xml
#------------------------------------------------------------------------------
# images: file(1) magic for image formats (see also "c-lang" for XPM bitmaps)
#
# originally from jef@helios.ee.lbl.gov (Jef Poskanzer),
# additions by janl@ifi.uio.no as well as others. Jan also suggested
# merging several one- and two-line files into here.
#
# XXX - byte order for GIF and TIFF fields?
# [GRR: TIFF allows both byte orders; GIF is probably little-endian]
#
# [GRR: what the hell is this doing in here?]
#0 string xbtoa btoa'd file
# PBMPLUS
# PBM file
0 string P1 image/x-portable-bitmap 7bit
# PGM file
0 string P2 image/x-portable-greymap 7bit
# PPM file
0 string P3 image/x-portable-pixmap 7bit
# PBM "rawbits" file
0 string P4 image/x-portable-bitmap
# PGM "rawbits" file
0 string P5 image/x-portable-greymap
# PPM "rawbits" file
0 string P6 image/x-portable-pixmap
# NIFF (Navy Interchange File Format, a modification of TIFF)
# [GRR: this *must* go before TIFF]
0 string IIN1 image/x-niff
# TIFF and friends
# TIFF file, big-endian
0 string MM image/tiff
# TIFF file, little-endian
0 string II image/tiff
# possible GIF replacements; none yet released!
# (Greg Roelofs, newt@uchicago.edu)
#
# GRR 950115: this was mine ("Zip GIF"):
# ZIF image (GIF+deflate alpha)
0 string GIF94z image/unknown
#
# GRR 950115: this is Jeremy Wohl's Free Graphics Format (better):
# FGF image (GIF+deflate beta)
0 string FGF95a image/unknown
#
# GRR 950115: this is Thomas Boutell's Portable Bitmap Format proposal
# (best; not yet implemented):
# PBF image (deflate compression)
0 string PBF image/unknown
# GIF
0 string GIF image/gif
# JPEG images
0 beshort 0xffd8 image/jpeg
# PC bitmaps (OS/2, Windoze BMP files) (Greg Roelofs, newt@uchicago.edu)
0 string BM image/x-ms-bmp
#>14 byte 12 (OS/2 1.x format)
#>14 byte 64 (OS/2 2.x format)
#>14 byte 40 (Windows 3.x format)
#0 string IC icon
#0 string PI pointer
#0 string CI color icon
#0 string CP color pointer
#0 string BA bitmap array
# CDROM Filesystems
32769 string CD001 application/x-iso9660
# Newer StuffIt archives (grant@netbsd.org)
0 string StuffIt application/x-stuffit
#>162 string >0 : %s
# BinHex is the Macintosh ASCII-encoded file format (see also "apple")
# Daniel Quinlan, quinlan@yggdrasil.com
11 string must\ be\ converted\ with\ BinHex\ 4 application/mac-binhex40
##>41 string x \b, version %.3s
#------------------------------------------------------------------------------
# lisp: file(1) magic for lisp programs
#
# various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com)
0 string ;; text/plain 8bit
# Emacs 18 - this is always correct, but not very magical.
0 string \012( application/x-elc
# Emacs 19
0 string ;ELC\023\000\000\000 application/x-elc
#------------------------------------------------------------------------------
# mail.news: file(1) magic for mail and news
#
# There are tests to ascmagic.c to cope with mail and news.
0 string Relay-Version: message/rfc822 7bit
0 string #!\ rnews message/rfc822 7bit
0 string N#!\ rnews message/rfc822 7bit
0 string Forward\ to message/rfc822 7bit
0 string Pipe\ to message/rfc822 7bit
0 string Return-Path: message/rfc822 7bit
0 string Received: message/rfc822
0 string Path: message/news 8bit
0 string Xref: message/news 8bit
0 string From: message/rfc822 7bit
0 string Article message/news 8bit
#------------------------------------------------------------------------------
# msword: file(1) magic for MS Word files
#
# Contributor claims:
# Reversed-engineered MS Word magic numbers
#
0 string \376\067\0\043 application/msword
0 string \320\317\021\340\241\261 application/msword
0 string \333\245-\0\0\0 application/msword
#------------------------------------------------------------------------------
# printer: file(1) magic for printer-formatted files
#
# PostScript
0 string %! application/postscript
0 string \004%! application/postscript
# Acrobat
# (due to clamen@cs.cmu.edu)
0 string %PDF- application/pdf
#------------------------------------------------------------------------------
# sc: file(1) magic for "sc" spreadsheet
#
38 string Spreadsheet application/x-sc
#------------------------------------------------------------------------------
# tex: file(1) magic for TeX files
#
# XXX - needs byte-endian stuff (big-endian and little-endian DVI?)
#
# From <conklin@talisman.kaleida.com>
# Although we may know the offset of certain text fields in TeX DVI
# and font files, we can't use them reliably because they are not
# zero terminated. [but we do anyway, christos]
0 string \367\002 application/x-dvi
#0 string \367\203 TeX generic font data
#0 string \367\131 TeX packed font data
#0 string \367\312 TeX virtual font data
#0 string This\ is\ TeX, TeX transcript text
#0 string This\ is\ METAFONT, METAFONT transcript text
# There is no way to detect TeX Font Metric (*.tfm) files without
# breaking them apart and reading the data. The following patterns
# match most *.tfm files generated by METAFONT or afm2tfm.
2 string \000\021 application/x-tex-tfm
2 string \000\022 application/x-tex-tfm
#>34 string >\0 (%s)
# Texinfo and GNU Info, from Daniel Quinlan (quinlan@yggdrasil.com)
0 string \\input\ texinfo text/x-texinfo
0 string This\ is\ Info\ file text/x-info
# correct TeX magic for Linux (and maybe more)
# from Peter Tobias (tobias@server.et-inf.fho-emden.de)
#
0 leshort 0x02f7 application/x-dvi
# RTF - Rich Text Format
0 string {\\rtf text/rtf
#------------------------------------------------------------------------------
# animation: file(1) magic for animation/movie formats
#
# animation formats, originally from vax@ccwf.cc.utexas.edu (VaX#n8)
# MPEG file
# MPEG sequences
0 belong 0x000001BA
>4 byte &0x40 video/mp2p
>4 byte ^0x40 video/mpeg
0 belong 0x000001BB video/mpeg
0 belong 0x000001B0 video/mp4v-es
0 belong 0x000001B5 video/mp4v-es
0 belong 0x000001B3 video/mpv
0 belong&0xFF5FFF1F 0x47400010 video/mp2t
0 belong 0x00000001
>4 byte&0x1F 0x07 video/h264
# FLI animation format
0 leshort 0xAF11 video/fli
# FLC animation format
0 leshort 0xAF12 video/flc
#
# SGI and Apple formats
# Added ISO mimes
0 string MOVI video/sgi
4 string moov video/quicktime
4 string mdat video/quicktime
4 string wide video/quicktime
4 string skip video/quicktime
4 string free video/quicktime
4 string idsc image/x-quicktime
4 string idat image/x-quicktime
4 string pckg application/x-quicktime
4 string/B jP image/jp2
4 string ftyp
>8 string isom video/mp4
>8 string mp41 video/mp4
>8 string mp42 video/mp4
>8 string/B jp2 image/jp2
>8 string 3gp video/3gpp
>8 string avc1 video/3gpp
>8 string mmp4 video/mp4
>8 string/B M4A audio/mp4
>8 string/B qt video/quicktime
# The contributor claims:
# I couldn't find a real magic number for these, however, this
# -appears- to work. Note that it might catch other files, too,
# so BE CAREFUL!
#
# Note that title and author appear in the two 20-byte chunks
# at decimal offsets 2 and 22, respectively, but they are XOR'ed with
# 255 (hex FF)! DL format SUCKS BIG ROCKS.
#
# DL file version 1 , medium format (160x100, 4 images/screen)
0 byte 1 video/unknown
0 byte 2 video/unknown
#
# Databases
#
# GDBM magic numbers
# Will be maintained as part of the GDBM distribution in the future.
# <downsj@teeny.org>
0 belong 0x13579ace application/x-gdbm
0 lelong 0x13579ace application/x-gdbm
0 string GDBM application/x-gdbm
#
0 belong 0x061561 application/x-dbm
#
# Executables
#
0 string \177ELF
>16 leshort 0 application/octet-stream
>16 leshort 1 application/x-object
>16 leshort 2 application/x-executable
>16 leshort 3 application/x-sharedlib
>16 leshort 4 application/x-coredump
>16 beshort 0 application/octet-stream
>16 beshort 1 application/x-object
>16 beshort 2 application/x-executable
>16 beshort 3 application/x-sharedlib
>16 beshort 4 application/x-coredump
#
# DOS
0 string MZ application/x-dosexec
#
# KDE
0 string [KDE\ Desktop\ Entry] application/x-kdelnk
0 string \#\ KDE\ Config\ File application/x-kdelnk
# xmcd database file for kscd
0 string \#\ xmcd text/xmcd
#------------------------------------------------------------------------------
# pkgadd: file(1) magic for SysV R4 PKG Datastreams
#
0 string #\ PaCkAgE\ DaTaStReAm application/x-svr4-package
#PNG Image Format
0 string \x89PNG image/png
# MNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/>
0 string \x8aMNG video/x-mng
0 string \x8aJNG video/x-jng
#------------------------------------------------------------------------------
# Hierarchical Data Format, used to facilitate scientific data exchange
# specifications at http://hdf.ncsa.uiuc.edu/
#Hierarchical Data Format (version 4) data
0 belong 0x0e031301 application/x-hdf
#Hierarchical Data Format (version 5) data
0 string \211HDF\r\n\032 application/x-hdf
# Adobe Photoshop
0 string 8BPS image/x-photoshop
# Felix von Leitner <felix-file@fefe.de>
0 string d8:announce application/x-bittorrent
# lotus 1-2-3 document
0 belong 0x00001a00 application/x-123
0 belong 0x00000200 application/x-123
# MS Access database
4 string Standard\ Jet\ DB application/msaccess
## magic for XBase files
#0 byte 0x02
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x03
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x04
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x05
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x30
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x43
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x7b
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x83
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x8b
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0x8e
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0xb3
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 byte 0xf5
#>8 leshort >0
#>>12 leshort 0 application/x-dbf
#
#0 leshort 0x0006 application/x-dbt
# Debian has entries for the old PGP formats:
# pgp: file(1) magic for Pretty Good Privacy
# see http://lists.gnupg.org/pipermail/gnupg-devel/1999-September/016052.html
#text/PGP key public ring
0 beshort 0x9900 application/pgp
#text/PGP key security ring
0 beshort 0x9501 application/pgp
#text/PGP key security ring
0 beshort 0x9500 application/pgp
#text/PGP encrypted data
0 beshort 0xa600 application/pgp-encrypted
#text/PGP armored data
##public key block
2 string ---BEGIN\ PGP\ PUBLIC\ KEY\ BLOCK- application/pgp-keys
0 string -----BEGIN\040PGP\40MESSAGE- application/pgp
0 string -----BEGIN\040PGP\40SIGNATURE- application/pgp-signature
#
# GnuPG Magic:
#
#
#text/GnuPG key public ring
0 beshort 0x9901 application/pgp
#text/OpenPGP data
0 beshort 0x8501 application/pgp-encrypted
# flash: file(1) magic for Macromedia Flash file format
#
# See
#
# http://www.macromedia.com/software/flash/open/
#
0 string FWS
>3 byte x application/x-shockwave-flash
# The following paramaters are created for Namazu.
# <http://www.namazu.org/>
#
# 1999/08/13
#0 string \<!--\ MHonArc text/html; x-type=mhonarc
0 string BZh application/x-bzip2
# 1999/09/09
# VRML (suggested by Masao Takaku)
0 string #VRML\ V1.0\ ascii model/vrml
0 string #VRML\ V2.0\ utf8 model/vrml
#------------------------------------------------------------------------------
# ichitaro456: file(1) magic for Just System Word Processor Ichitaro
#
# Contributor kenzo-:
# Reversed-engineered JS Ichitaro magic numbers
#
0 string DOC
>43 byte 0x14 application/ichitaro4
>144 string JDASH application/ichitaro4
0 string DOC
>43 byte 0x15 application/ichitaro5
0 string DOC
>43 byte 0x16 application/ichitaro6
#------------------------------------------------------------------------------
# office97: file(1) magic for MicroSoft Office files
#
# Contributor kenzo-:
# Reversed-engineered MS Office magic numbers
#
#0 string \320\317\021\340\241\261\032\341
#>48 byte 0x1B application/excel
2080 string Microsoft\ Excel\ 5.0\ Worksheet application/excel
2114 string Biff5 application/excel
0 string \224\246\056 application/msword
0 belong 0x31be0000 application/msword
0 string PO^Q` application/msword
0 string \320\317\021\340\241\261\032\341
>546 string bjbj application/msword
>546 string jbjb application/msword
512 string R\0o\0o\0t\0\ \0E\0n\0t\0r\0y application/msword
2080 string Microsoft\ Word\ 6.0\ Document application/msword
2080 string Documento\ Microsoft\ Word\ 6 application/msword
2112 string MSWordDoc application/msword
#0 string \320\317\021\340\241\261\032\341 application/powerpoint
0 string \320\317\021\340\241\261\032\341 application/msword
0 string #\ PaCkAgE\ DaTaStReAm application/x-svr4-package
# WinNT/WinCE PE files (Warner Losh, imp@village.org)
#
128 string PE\000\000 application/octet-stream
0 string PE\000\000 application/octet-stream
# miscellaneous formats
0 string LZ application/octet-stream
# .EXE formats (Greg Roelofs, newt@uchicago.edu)
#
0 string MZ
>24 string @ application/octet-stream
0 string MZ
>30 string Copyright\ 1989-1990\ PKWARE\ Inc. application/x-zip
0 string MZ
>30 string PKLITE\ Copr. application/x-zip
0 string MZ
>36 string LHa's\ SFX application/x-lha
0 string MZ application/octet-stream
# LHA archiver
2 string -lh
>6 string - application/x-lha
# Zoo archiver
20 lelong 0xfdc4a7dc application/x-zoo
# ARC archiver
0 lelong&0x8080ffff 0x0000081a application/x-arc
0 lelong&0x8080ffff 0x0000091a application/x-arc
0 lelong&0x8080ffff 0x0000021a application/x-arc
0 lelong&0x8080ffff 0x0000031a application/x-arc
0 lelong&0x8080ffff 0x0000041a application/x-arc
0 lelong&0x8080ffff 0x0000061a application/x-arc
# Microsoft Outlook's Transport Neutral Encapsulation Format (TNEF)
0 lelong 0x223e9f78 application/ms-tnef
# From: stephane.loeuillet@tiscali.f
# http://www.djvuzone.org/
0 string AT&TFORM image/x.djvu
# Danny Milosavljevic <danny.milo@gmx.net>
# this are adrift (adventure game standard) game files, extension .taf
# depending on version magic continues with 0x93453E6139FA (V 4.0)
# 0x9445376139FA (V 3.90)
# 0x9445366139FA (V 3.80)
# this is from source (http://www.adrift.org.uk/) and I have some taf
# files, and checked them.
#0 belong 0x3C423FC9
#>4 belong 0x6A87C2CF application/x-adrift
#0 string \000\000\001\000 image/x-ico
# Quark Xpress 3 Files:
# (made the mimetype up)
0 string \0\0MMXPR3\0 application/x-quark-xpress-3
# EET archive
# From: Tilman Sauerbeck <tilman@code-monkey.de>
0 belong 0x1ee7ff00 application/x-eet
# From: Denis Knauf, via gentoo.
0 string fLaC audio/x-flac
0 string CWS application/x-shockwave-flash
# Gnumeric spreadsheet
# This entry is only semi-helpful, as Gnumeric compresses its files, so
# they will ordinarily reported as "compressed", but at least -z helps
39 string =<gmr:Workbook application/x-gnumeric

View File

@@ -0,0 +1,2 @@
# Depends: authn_core
LoadModule access_compat_module /usr/lib/apache2/modules/mod_access_compat.so

View File

@@ -0,0 +1,11 @@
# a2enmod-note: needs-configuration
#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1 @@
LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so

View File

@@ -0,0 +1,24 @@
<IfModule alias_module>
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If
# you do not use FancyIndexing, you may comment this out.
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options FollowSymlinks
AllowOverride None
Require all granted
</Directory>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1 @@
LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so

View File

@@ -0,0 +1 @@
LoadModule allowmethods_module /usr/lib/apache2/modules/mod_allowmethods.so

View File

@@ -0,0 +1,2 @@
# Depends: mime
LoadModule asis_module /usr/lib/apache2/modules/mod_asis.so

View File

@@ -0,0 +1,2 @@
# Depends: authn_core
LoadModule auth_basic_module /usr/lib/apache2/modules/mod_auth_basic.so

View File

@@ -0,0 +1,2 @@
# Depends: authn_core
LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so

View File

@@ -0,0 +1,2 @@
# Depends: session authn_core
LoadModule auth_form_module /usr/lib/apache2/modules/mod_auth_form.so

View File

@@ -0,0 +1 @@
LoadModule authn_anon_module /usr/lib/apache2/modules/mod_authn_anon.so

View File

@@ -0,0 +1 @@
LoadModule authn_core_module /usr/lib/apache2/modules/mod_authn_core.so

View File

@@ -0,0 +1,2 @@
# Depends: dbd
LoadModule authn_dbd_module /usr/lib/apache2/modules/mod_authn_dbd.so

View File

@@ -0,0 +1 @@
LoadModule authn_dbm_module /usr/lib/apache2/modules/mod_authn_dbm.so

View File

@@ -0,0 +1 @@
LoadModule authn_file_module /usr/lib/apache2/modules/mod_authn_file.so

View File

@@ -0,0 +1 @@
LoadModule authn_socache_module /usr/lib/apache2/modules/mod_authn_socache.so

View File

@@ -0,0 +1 @@
LoadModule authnz_fcgi_module /usr/lib/apache2/modules/mod_authnz_fcgi.so

View File

@@ -0,0 +1,2 @@
# Depends: ldap
LoadModule authnz_ldap_module /usr/lib/apache2/modules/mod_authnz_ldap.so

View File

@@ -0,0 +1 @@
LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so

View File

@@ -0,0 +1,2 @@
# Depends: dbd authz_core
LoadModule authz_dbd_module /usr/lib/apache2/modules/mod_authz_dbd.so

View File

@@ -0,0 +1,2 @@
# Depends: authz_core
LoadModule authz_dbm_module /usr/lib/apache2/modules/mod_authz_dbm.so

View File

@@ -0,0 +1,2 @@
# Depends: authz_core
LoadModule authz_groupfile_module /usr/lib/apache2/modules/mod_authz_groupfile.so

View File

@@ -0,0 +1,2 @@
# Depends: authz_core
LoadModule authz_host_module /usr/lib/apache2/modules/mod_authz_host.so

View File

@@ -0,0 +1 @@
LoadModule authz_owner_module /usr/lib/apache2/modules/mod_authz_owner.so

View File

@@ -0,0 +1,2 @@
# Depends: authz_core
LoadModule authz_user_module /usr/lib/apache2/modules/mod_authz_user.so

View File

@@ -0,0 +1,96 @@
<IfModule mod_autoindex.c>
# Directives controlling the display of server-generated directory listings.
#
# IndexOptions: Controls the appearance of server-generated directory
# listings.
# Remove/replace the "Charset=UTF-8" if you don't use UTF-8 for your filenames.
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=* DescriptionWidth=* Charset=UTF-8
#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip x-bzip2
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
# It's a suffix rule, so simply matching "core" matches "score" as well !
AddIcon /icons/bomb.gif /core
AddIcon (SND,/icons/sound2.gif) .ogg
AddIcon (VID,/icons/movie.gif) .ogm
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
# Default icons for OpenDocument format
AddIcon /icons/odf6odt-20x22.png .odt
AddIcon /icons/odf6ods-20x22.png .ods
AddIcon /icons/odf6odp-20x22.png .odp
AddIcon /icons/odf6odg-20x22.png .odg
AddIcon /icons/odf6odc-20x22.png .odc
AddIcon /icons/odf6odf-20x22.png .odf
AddIcon /icons/odf6odb-20x22.png .odb
AddIcon /icons/odf6odi-20x22.png .odi
AddIcon /icons/odf6odm-20x22.png .odm
AddIcon /icons/odf6ott-20x22.png .ott
AddIcon /icons/odf6ots-20x22.png .ots
AddIcon /icons/odf6otp-20x22.png .otp
AddIcon /icons/odf6otg-20x22.png .otg
AddIcon /icons/odf6otc-20x22.png .otc
AddIcon /icons/odf6otf-20x22.png .otf
AddIcon /icons/odf6oti-20x22.png .oti
AddIcon /icons/odf6oth-20x22.png .oth
#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
DefaultIcon /icons/unknown.gif
#
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes
ReadmeName README.html
HeaderName HEADER.html
#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
IndexIgnore .??* *~ *# RCS CVS *,v *,t
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1 @@
LoadModule autoindex_module /usr/lib/apache2/modules/mod_autoindex.so

View File

@@ -0,0 +1 @@
LoadModule brotli_module /usr/lib/apache2/modules/mod_brotli.so

View File

@@ -0,0 +1 @@
LoadModule buffer_module /usr/lib/apache2/modules/mod_buffer.so

View File

@@ -0,0 +1 @@
LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so

View File

@@ -0,0 +1,27 @@
<IfModule mod_cache_disk.c>
# cache cleaning is done by htcacheclean, which can be configured in
# /etc/default/apache2
#
# For further information, see the comments in that file,
# /usr/share/doc/apache2/README.Debian, and the htcacheclean(8)
# man page.
# This path must be the same as the one in /etc/default/apache2
CacheRoot /var/cache/apache2/mod_cache_disk
# This will also cache local documents. It usually makes more sense to
# put this into the configuration for just one virtual host.
#CacheEnable disk /
# The result of CacheDirLevels * CacheDirLength must not be higher than
# 20. Moreover, pay attention on file system limits. Some file systems
# do not support more than a certain number of inodes and
# subdirectories (e.g. 32000 for ext3)
CacheDirLevels 2
CacheDirLength 1
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View File

@@ -0,0 +1,2 @@
# Depends: cache
LoadModule cache_disk_module /usr/lib/apache2/modules/mod_cache_disk.so

View File

@@ -0,0 +1,2 @@
# Depends: cache
LoadModule cache_socache_module /usr/lib/apache2/modules/mod_cache_socache.so

View File

@@ -0,0 +1 @@
LoadModule cern_meta_module /usr/lib/apache2/modules/mod_cern_meta.so

View File

@@ -0,0 +1 @@
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so

Some files were not shown because too many files have changed in this diff Show More