我的网站的#!/usr/bin/env python3
import random
if __name__ == "__main__":
# initialize a 4 x 4 array with integers
array2d = [[x for x in range(0,4)] for i in range(0,4)]
# shuffle the numbers for variability
for i in range(1,4):
random.shuffle(array2d[i])
# print each row for validation
for row in array2d:
print(row)
# pick colum 2 to check for value 2
col = 2
value = 2
if sum([True for x in array2d if x[col] == value]) > 0:
print("value {0} found in colum {0}".format(value, col))
else:
print("value {0} missing in colum {0}".format(value, col))
# pick colum 3 to check for value 2
col = 2
value = 20 # This vauel will always be missing.
if any([True for x in array2d if x[col] == value]) > 0:
print("value {0} found in colum {0}".format(value, col))
else:
print("value {0} missing in colum {0}".format(value, col))
域指向一个Wix网站,但我希望将子域指向我的Heroku应用。该域名是从Yahoo Small Business购买的。
即如果www
指向Wix,www.mysite.com
可以指向没有问题的heroku应用吗?
我的困惑是由于Heroku docs中的这一行:
除任何子域外,还必须添加根域。
将子域添加到Heroku会以某种方式破坏Wix上的域吗?
此外,如果我确实将子域定向到Heroku,Heroku仍然能够自动处理SSL证书吗?
答案 0 :(得分:0)
您引用的报价与添加根域有关。因为您想将一个与您无关的子域指向heroku。
您感兴趣的部分是此部分:https://devcenter.heroku.com/articles/custom-domains#add-a-custom-domain-with-a-subdomain
基本上,您想告诉heroku您将添加一个自定义子域(按照说明进行操作),然后您需要配置DNS记录以添加CNAME(this part给出了一些示例):
Record Name Target
CNAME www whispering-willow-5678.herokudns.com.
CNAME othersubdomain autumn-sunset-1495.herokudns.com.
CNAME examplesecure example-2121.herokussl.com.
CNAME examplesecure-eu example.herokuapp.com.