Category: Uncategorized

  • Azure Web App配置Angular缓存Header

    记录下https://www.azurespeed.com前端从Angular 1升级到Augualr 8以后的的几个部署变化细节 index.html需要配置用不缓存 静态资源如css,js,webpack时候都会带上hashtag,所以可以设置一个常的过期时间 Azure Web App底层是IIS,所以需要用web.config配置,可以修改angular.json让webpack打包包含web.config

  • Azure Web App使用免费SSL证书

    Azure Web App支持免费证书,记录下www.azurespeed.com启用证书步骤 在Azure Web App里,找到菜单TLS/SSL settings,先点中 Private Key Certificates (.pfx) ,然后点Create App Service Managed Certificates 在弹出的创建表单里,选中需要证书的域名,点击创建 safd asdf asfd

  • 美国Avis租车被多收20美金的高速费

    前2天吃午饭的时候听Yuqing童鞋说她出差的时候只走了一次高速,但是信用卡上被Avis多收了20美金。我突然想起前几个月去西雅图的时候也走了一次520高速,赶紧也查了一下信用卡账单,果不其然,也中招了。 我隐约记起租车的时候又提到e-tolls的服务,但是我提车的时候是没有选这个服务的。上网大概查了一下,Avis还真有这么一个条款:https://www.avis.com/en/products-and-services/services/avis-e-toll,里面的这句话解释了这个费用的原因:  You automatically opt into our e-Toll service program and will be charged $3.95 for each day of the entire rental period, including any days on which e-Toll is not used, up to a maximum of $19.75 per rental month, plus incurred tolls at the maximum prevailing rates posted by the toll authority. The…

  • 使用阿里云Maven库

    在C:\Users\{username}\.m2\下创建一个settings.xml文件,内容如下 <?xml version=”1.0″ encoding=”UTF-8″?> <settings xmlns=”http://maven.apache.org/SETTINGS/1.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd”> <mirrors> <!– 阿里云仓库 –> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> </mirrors> </settings>