All you need to do is add pti=off to the kernel command line (in GRUB) to disable the patch.
Где золотая середина между стабильностью и актуальными пакетами?
С Linux немного знаком.
Контейнер phpfpm - 'web/assets', runtime папки имеют 777 (1000:staff)
FROM php:fpm
RUN useradd добавляем юзера с uid 100 && \
меняем в конфиге юзера
EXPOSE 9000
CMD ["php-fpm"]
import jwt
encoded = jwt.encode({'version': '1.0'}, 'top-secret', algorithm='HS512')
print(encoded.decode('utf-8'))
decoded = jwt.decode(encoded, 'top-secret', algorithm='HS512')
print(decoded)
Самому писать
<form>
<div class="form-group">
<label for="InputFile">File input</label>
<input type="file" id="InputFile" @change="onFileChange">
<p class="help-block">Upload image</p>
</div>
</form>
onFileChange (e) {
let file = e.target.files[0] || e.dataTransfer.files[0]
let formData = new FormData()
formData.append('image', file)
this.$http.post('upload/', formData)
.then(response => {
console.log(response)
}, error => {
console.log(error)
})
}